https://github.com/dimanu-py/learning-bash-scripting
Basic bash scripts to learn
https://github.com/dimanu-py/learning-bash-scripting
learning learning-by-doing shell-script
Last synced: 5 months ago
JSON representation
Basic bash scripts to learn
- Host: GitHub
- URL: https://github.com/dimanu-py/learning-bash-scripting
- Owner: dimanu-py
- Created: 2024-03-03T12:43:46.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-04T10:59:34.000Z (almost 2 years ago)
- Last Synced: 2025-06-19T08:09:10.856Z (7 months ago)
- Topics: learning, learning-by-doing, shell-script
- Language: Shell
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Learning bash scripting
## Description
This repository will contain some basic scripts example while I learn how to create bash scripts to automate different commands and workflows that could be executed through a terminal emulator.
## Set up
When we create the _.sh_ file, we won't have execution permission. We can run the scripts by using the following command `bash ` or `sh `.
If we want to run the script by using `./` we need to grant execution permission to the file.
To grant execution permission to our user run `chmod u+x `