Como executar script de 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
#!/bin/sh
include
#!/bin/bash
then in terminal
chmod +x <filename>
./<filename>
bash yourfile.sh