Difference between revisions of "Bash: alias"

From wikieduonline
Jump to navigation Jump to search
Line 15: Line 15:
 
  alias NF="awk '{print \$NF}'"
 
  alias NF="awk '{print \$NF}'"
  
  alias [[sourceprofile]]="[[source[[ ~/[[.bash_profile]]"
+
  alias [[sourceprofile]]="[[source]] ~/[[.bash_profile]]"
 
  alias [[zsourceprofile]]="source [[.zprofile]]"
 
  alias [[zsourceprofile]]="source [[.zprofile]]"
  

Revision as of 14:19, 23 June 2022

alias does not accept parameters but a function can be called just like an alias


Examples

  • Execute alias to display your aliases
alias trim="awk ' {\$1=\$1} 1 '"

alias g="grep"
alias gi="grep -i"
alias gv="grep -v"
alias la="ls -la"
alias NF="awk '{print \$NF}'"
alias sourceprofile="source ~/.bash_profile"
alias zsourceprofile="source .zprofile"
alias p8="ping 8.8.8.8"
alias mp="multipass"
alias viconfig="vi ~/.ssh/config"

alias awswhoiam="aws iam get-user"

Related terms

See also

Advertising: