Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 337 Bytes

Bash.md

File metadata and controls

25 lines (17 loc) · 337 Bytes

Bash

#!/bin/bash

echo "Hello World"

to run this:

chmod +x hello-world.sh 
./hello-world.sh 
Hello World
#!/bin/bash

tar -czf /tmp/myhome_directory.tar.gz /home/linuxconfig

(to find out what this do..)

more here..