I‘ve couple of shell aliases defined in ~/.bashrc file. How do I temporarily remove (disable) a shell alias and call the core command directly without using unalias command?
{ 19 comments }
I‘ve couple of shell aliases defined in ~/.bashrc file. How do I temporarily remove (disable) a shell alias and call the core command directly without using unalias command?
{ 19 comments }
Q. How do I ignore shell aliases or function when running a command without removing alias / function from memory or current shell session?
{ 2 comments }
How do I pass all command line args to my bash alias called foo. For example: alias foo=”/path/to/command $@” However $@ get interpreted when creating the alias instead of during the execution of the alias and escaping the $ doesn’t work either. How do I solve this problem?
{ 19 comments }
Q. I find vi hard to use. How do I change my default text editor from vim / vi to Pico under Debian Linux? A. To use and change an editor to edit your text message, set the variable EDITOR to the pathname of the vi / vim binary file. You need to use export [...]
{ 13 comments }