6 lines
78 B
Bash
6 lines
78 B
Bash
|
#!/bin/sh -l
|
||
|
|
||
|
echo "Hello $1"
|
||
|
time=$(date)
|
||
|
echo "time=$time" >> $GITEA_OUTPUT
|