first commit

This commit is contained in:
2026-08-04 15:32:57 +06:30
commit be19f89c74
26 changed files with 3669 additions and 0 deletions

19
BashScriptFile.md Executable file
View File

@@ -0,0 +1,19 @@
## Basic bash script
```
#!/bin/bash
# declare STRING variable
STRING="Hello World"
#print variable on a screen
echo $STRING
```
## Backup bash script
```
#!/bin/bash
tar -czf backup.tar.gz /home/app/data
```
[Bash Scripting Tutorial](https://linuxconfig.org/bash-scripting-tutorial)