Ubuntu-16.04.2-Server新增命令別名alias
root@ubuntu:~# alias
alias egrep='egrep --color=auto'
alias fgrep='fgrep --color=auto'
alias grep='grep --color=auto'
alias l='ls -CF'
alias la='ls -A'
alias ll='ls -alF'
alias ls='ls --color=auto'
root@ubuntu:~# echo $SHELL
/bin/bash
root@ubuntu:~#
新增alias ..='cd .. --color=auto'到/etc/bash.bashrc並source /etc/bash.bashrc使配置生效
root@ubuntu:~# vi /etc/bash.bashrc
root@ubuntu:~# vi /etc/profile
root@ubuntu:~# vi /etc/bash.bashrc
root@ubuntu:~# vi /etc/bash.bashrc
root@ubuntu:~# tail /etc/bash.bashrc
/usr/share/command-not-found/command-not-found -- "$1"
return $?
else
printf "%s: command not found\n" "$1" >&2
return 127
fi
}
fi
#added on 20170609
alias ..='cd .. --color=auto'
root@ubuntu:~# source /etc/bash.bashrc
root@ubuntu:~# cd /tmp
root@ubuntu:/tmp# ..
root@ubuntu:/# alias
alias ..='cd .. --color=auto'
alias egrep='egrep --color=auto'
alias fgrep='fgrep --color=auto'
alias grep='grep --color=auto'
alias l='ls -CF'
alias la='ls -A'
alias ll='ls -alF'
alias ls='ls --color=auto'
root@ubuntu:/#
測試並檢視,可以發現新增的命令別名已生效。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29734436/viewspace-2140556/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- linux 命令別名使用-aliasLinux
- ls命令+檔案型別+別名(alias)型別
- Linux基礎命令---alias別名Linux
- [Git] 別名(alias)Git
- linux怎麼使用alias建立命令別名?linux系統使用alias建立命令別名的技巧Linux
- 利用alias在Linux下設定命令別名Linux
- 1.5 - Laravel 5.6 - Alias 別名Laravel
- 給alias命令新增引數支援
- Mac終端給命令設定別名alias的辦法Mac
- Mac新增bash aliasMac
- 使用Node.js為require設定別名(alias)Node.jsUI
- vue-cli 3.0配置webpack目錄別名aliasVueWeb
- 永久化alias命令
- alias 命令設定
- Elasticsearch之索引模板index template與索引別名index aliasElasticsearch索引Index
- Facades 類別名設定流程 (class_alias)
- Webpack 中css 如何 import 使用 alias別名 相對路徑WebCSSImport
- Hadoop命令別名Hadoop
- webpack的alias別名引用 在webstorm中點選不能跳轉?WebORM
- Git定義命令別名Git
- 在 WebStorm 中,配置能夠識別 Vue CLI 3 建立的專案的別名 alias @WebORMVue
- Linux中如何使用alias命令Linux
- 為什麼.bashrc中的alias別名不能用於指令碼中和Makefile指令碼
- zsh 下 git 別名(alias) 和 oh-my-zsh git 外掛的故事Git
- Linux基礎命令學習【mount掛載及注意事項,cp 拷貝,mv移動,alias別名定義,】Linux
- 命令別名:保護和服務
- linux建立命令別名Linux
- Linux常用基本命令( ls, alias)Linux
- 使用 alias 簡化命令輸入(轉)
- Nginx(alias 和 root的區別)Nginx
- nginx root 和 alias 配置區別Nginx
- Git基本命令 -- 別名 + 忽略 + 推送Git
- rhel5利用別名alias指向rlwrap啟用oracle sqlplus歷史列表OracleSQL
- 在.bashrc 裡用 alias 設定快捷命令
- nginx配置 —— root與alias的區別Nginx
- Nginx中root和alias的區別Nginx
- 使用Mac命令別名,提升工作效率Mac
- nginx關於root與alias的區別Nginx