linux 中创建命令别名


 

1、临时创建

root@PC1:/home/test2# ls
a.txt
root@PC1:/home/test2# cat a.txt
j k e
s f g
x v b
root@PC1:/home/test2# alias 'cat=cat -A'      ## 创建命令别名
root@PC1:/home/test2# ls
a.txt
root@PC1:/home/test2# cat a.txt
j k e^M$
s f g^M$
x v b^M$
root@PC1:/home/test2# unalias cat    ## 取消命令别名
root@PC1:/home/test2# ls
a.txt
root@PC1:/home/test2# cat a.txt
j k e
s f g
x v b

linux 中创建命令别名

 

原创文章,作者:,如若转载,请注明出处:https://blog.ytso.com/268292.html

(0)
上一篇 2022年6月19日
下一篇 2022年6月19日

相关推荐

发表回复

登录后才能评论