您的位置:首页 > 运维架构 > Linux

How to define alias in Linux

2017-04-18 10:46 501 查看
1. view ~/.bashrc

It looks like below:

# .bashrc

# Source global definitions

if [ -f /etc/bashrc ]; then

        . /etc/bashrc

fi

# User specific aliases and functions
alias commandA='bash ./test.sh'

2.cd ~

  touch test.sh

  chmod 777 test.sh

  

3.run ~/.bashrc 

[e_dingl@test3tcapprh01 ~]$ . ~/.bashrc

4.in command line, type  "commandA" and enter

==============

Other Sample : 

# User specific aliases and functions

#Counts for incoming and processed

alias reads='echo -n "Incoming: "; find /home/pipe/Incoming/MultiDrive/MeterReads/ -type f | grep -v "Event" | wc -l; echo -n "Processed: "; find /home/pipe/Processed/MultiDrive/MeterReads/ -type f | grep -v "Event" | wc -l; date'
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: