bash-guide
bash-guide copied to clipboard
A guide to learn bash
Ref: https://stackoverflow.com/questions/12468889/bash-script-error-function-not-found-why-would-this-appear The syntax described in the guide should also be accompanied by this alternative so that beginners in bash don't face the error `function not found` like I did...
I've added some new string tricks to the guide.
# SOCKS5, zipping function, goodbye message and some basic SSH treats ---
I have done translate to Russian language https://github.com/navinweb/bash-guide
Added `rsync` command.
There is an other use of `for`, it's very useful in some case ```bash for char in {a..z}; do echo$ char done ``` It will be print `a b c...
I think it's worth mentioning that some of the function works on Bash 4+. I'm pretty certain about `${string^^}` etc. not sure about the other functions. I think that specifying...
Hello @Idnan Thanks for making such awesome bash guide, i really liked it. Please add .deb package installation command `dpkg -i` to install the .deb packages by command line. Thanks.
Hi, The guide is awesome, will be very useful for a beginner. (y) bash shell builtin `help` is missing in the guide. $ `help` ``` GNU bash, version 4.3.11(1)-release (x86_64-pc-linux-gnu)...