How to define alias in Linux

来源:互联网 发布:w3school node 编辑:程序博客网 时间:2024/06/05 19:39
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'



0 0
原创粉丝点击