cara menjalankan skrip shell
include
#!/bin/bash (1st line inside yourfile.sh)
to run
./yourfile.sh
if you do not include that line
bash yourfile.sh
Hutch Polecat
include
#!/bin/bash (1st line inside yourfile.sh)
to run
./yourfile.sh
if you do not include that line
bash yourfile.sh
chmod +x /path/to/yourscript.sh
bash yourfile.sh