↧
Shell Tip: Run an aliased command, ignoring the alias (Solution #0)
How Bash Uses Aliases/Commands First, it will try to find an alias for the given name. If no alias is found, then it will use the first command in your $PATH by the given name. Scenario You set...
View ArticleShell Tip: Run an aliased command, ignoring the alias (Solution #1)
How Bash Uses Aliases/Commands First, it will try to find an alias for the given name. If no alias is found, then it will use the first command in your $PATH by the given name. Scenario You set...
View ArticleAdvanced Bash Keyboard Shortcuts
I strive for efficiency and precision when typing. I do most of my typing in vim and bash (or zsh). Bash has many functions that can be assigned to keyboard shortcuts with the bind command. Using...
View Article