Search Results

0
votes
4answers
4k views

How to run a .sh-script in an Unix console/Mac terminal?

I know it, forgets it and relearn it again. Time to write it down. …
1
vote

How to run a .sh-script in an Unix console/Mac terminal?

To start the shell-script 'file.sh': sh file.sh bash file.sh Another option is set executable permission using chmod command: chmod +x file.sh …