別名alias的兩種用法

2021-12-30 08:07:52 字數 1073 閱讀 1053

1、vim /etc/bashrc ###針對全域性使用者

注意:/etc/bashrc 檔案內其他任何內容如果不是專門要修改,請不要刪除,會出現其他問題

[root@allen ~]# vim /etc/bashrc

# /etc/bashrc

alias h='date'

# system wide functions and aliases

# environment stuff goes in /etc/profile

[root@allen ~]# source /etc/bashrc ####使建立的別名立刻生效2. vim/root/.bashrc ###只有root使用者有許可權

注意:/root/bashrc 檔案內其他任何內容如果不是專門要修改,請不要刪除,會出現其他問題

[root@allen ~]# source /etc/bashrc

# .bashrc

alias n='hostname'

# user specific aliases and funct

##########設定好後,退出儲存重新連線終端生效

3.用alias 命令可以檢視當前命名好的別名

[root@allen ~]# alias

alias cp='cp -i'

alias egrep='egrep --color=auto'

alias fgrep='fgrep --color=auto'

alias grep='grep --color=auto'

alias h='date'

alias l.='ls -d .* --color=auto'

alias ll='ls -l --color=auto'

alias ls='ls --color=auto'

alias mv='mv -i'

alias n='hostname'

alias rm='rm -i'

alias which='alias | /usr/bin/which --tty-only --read-alias --show-dot --show-tilde'

FIELD SYMBOLS的兩種用法

第一種,把fs當做乙個泛型,什麼東西都可以放進去 data begin of man,name type str,20 type c,height type i,end of man.data a man like man.a man name 阿勇 a man f a man height 171...

Android Intent的兩種用法

intent是android元件之一,是用於連線四大元件的乙個比較重要的部分。intent有兩種用法 一種是顯式intent,如果用於啟用activity就這樣寫 intent intent new intent this,testactivity.class startactivity 一種是隱式...

Handler的兩種用法

android 為了執行緒安全,只允許在主線程中修改ui,如果想在子執行緒中更改ui,可以使用handler.用法一 在子執行緒中傳送更新資訊 message msg message.obtain msg.what 1 bundle data new bundle data.putstring so...