I'm learning shell

This commit is contained in:
DarkElfMagic 2022-12-10 20:44:12 -06:00
commit 9716d380ae
1 changed files with 5 additions and 0 deletions

5
learning.sh Executable file
View File

@ -0,0 +1,5 @@
#!/bin/sh
HW="Hello, World!"
printf "Jello %s\n" "$HW"
exit 0