shell-scripts-on-mac
Shell Scripts on Mac
Shell scripts on mac in a nutshell:
- Create a new shell script file with nano:
nano script.sh
- Enter the following code to signify it's a shell script and to run a command:
#!/bin/sh ls
- Make it executable with chmod:
chmod 777 script.sh
- Run it with the sh command:
sh script.sh
Schedule a Script on Mac
shell-scripts-on-mac.txt · Last modified: 2023/11/27 16:10 by Roman Sheydvasser