Sample project

This commit is contained in:
2020-11-23 18:45:42 +01:00
commit 280161bcdf
2 changed files with 16 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
This is a small "Hello World" sample
with a BASH Script to display "Hello World"
Usage:
$ ./bash.sh
+6
View File
@@ -0,0 +1,6 @@
#!/bin/bash
#
echo "Hello World"
exit 0