https://github.com/devenes/bash-script-variables
A Bash Script file that you can experience echo, read and sed commands, variables and use if loops.
https://github.com/devenes/bash-script-variables
automation awk-script bash echo script scripting scripts sh shell shell-script unix
Last synced: 6 months ago
JSON representation
A Bash Script file that you can experience echo, read and sed commands, variables and use if loops.
- Host: GitHub
- URL: https://github.com/devenes/bash-script-variables
- Owner: devenes
- License: mit
- Created: 2022-03-04T22:38:12.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-03-10T23:13:45.000Z (almost 4 years ago)
- Last Synced: 2025-02-22T19:27:01.021Z (11 months ago)
- Topics: automation, awk-script, bash, echo, script, scripting, scripts, sh, shell, shell-script, unix
- Language: Shell
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Bash Scripting
Bash Scripting is a powerful part of system administration and development used at an extreme level. It is used by the System Administrators, Network Engineers, Developers, Scientists, and everyone who use Linux/Unix operating system. They use Bash for system administration, data crunching, web application deployment, automated backups, creating custom scripts for various pages, etc.
## Script
In Computer programming, a script is a set of commands for an appropriate run time environment which is used to automate the execution of tasks.
## Bash Script
A Bash Shell Script is a plain text file containing a set of various commands that we usually type in the command line. It is used to automate repetitive tasks on Linux filesystem. It might include a set of commands, or a single command, or it might contain the hallmarks of imperative programming like loops, functions, conditional constructs, etc. Effectively, a Bash script is a computer program written in the Bash programming language.