https://github.com/blwatkins/learning-shell-scripting
Learning resources and notes for Unix shell scripting.
https://github.com/blwatkins/learning-shell-scripting
learning shell shell-scripting tutorials unix
Last synced: 11 months ago
JSON representation
Learning resources and notes for Unix shell scripting.
- Host: GitHub
- URL: https://github.com/blwatkins/learning-shell-scripting
- Owner: blwatkins
- License: mit
- Created: 2025-05-22T21:06:59.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-23T00:16:18.000Z (about 1 year ago)
- Last Synced: 2025-06-06T00:08:24.010Z (about 1 year ago)
- Topics: learning, shell, shell-scripting, tutorials, unix
- Language: Shell
- Homepage: https://blwatkins.github.io/learn-to-code/unix/
- Size: 5.86 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# learning shell scripting
Learning resources and notes for Unix shell scripting.
## [brittni's guide to unix](https://blwatkins.github.io/learn-to-code/unix/)
## comments
Comments in a shell script start with the `#` symbol. Comments are ignored by the shell interpreter.
```shell
# this is a comment
pwd
```
## development steps
1. ### [create a new shell script file](https://blwatkins.github.io/learn-to-code/unix/2025/05/22/unix-shell-scripts.html#creating-a-shell-script-file)
1. ### [open the shell script file](https://blwatkins.github.io/learn-to-code/unix/2025/05/22/unix-shell-scripts.html#opening-a-shell-script-file)
1. ### [write the shell script](https://blwatkins.github.io/learn-to-code/unix/2025/05/22/unix-shell-scripts.html#writing-a-shell-script)
1. ### [execute the shell script](https://blwatkins.github.io/learn-to-code/unix/2025/05/22/unix-shell-scripts.html#executing-a-shell-script)
----
Copyright (C) 2025 brittni and the polar bear LLC.