Re: My Bash Tutorial
Posted by OmegaKV on
URL: https://mikraite.arkian.net/My-Bash-Tutorial-tp4442p4487.html
I think this covers most of the bash I use on a day to day basis. A couple of commands not mentioned which I use every day are the "grep" and "more" commands. This is less commonly used and not essential, but I also find the "-" symbol convenient, which resolves to the previous directory, so that I can do "cd -" and it brings me to the previous directory I was in. I also find "realpath" is convenient, because if I want to get the absolute path of a file I can simply type "realpath ../filename" instead of manually constructing it by "cd ..; echo $(pwd)/filename; cd -"