6 lines
128 B
Bash
6 lines
128 B
Bash
|
#!/bin/sh
|
||
|
export-cmd UNAME uname
|
||
|
export-cmd DATE date
|
||
|
echo "This is a test shell script."
|
||
|
echo "This is $UNAME and it is $DATE"
|