标签:home 详细 iso alias 方式 ls -l nbsp pass strong
1:
grep优化 -r 递归检索目录 -n 显示行号 -E 同egrep,可以使用正则
alias grep=‘grep -rnE --color‘
[root@backup backup]# grep ‘root‘ /etc/passwd
root:x:0:0:root:/root:/bin/bash
operator:x:11:0:operator:/root:/sbin/nologin
2:
优化列出详细信息时的时间显示格式
alias ll=‘ls -l --time-style=long-iso‘
[root@backup backup]# ll total 28 drwx------. 2 rsync rsync 16384 2018-04-04 09:15 lost+found drwxr-xr-x. 3 rsync rsync 4096 2018-04-09 12:20 mysql drwxr-xr-x. 2 rsync rsync 4096 2018-04-08 10:45 sync drwxr-xr-x. 4 rsync root 4096 2018-04-08 18:02 web
3:
cp显示详细信息
alias cp=‘cp -vi‘
[root@backup backup]# cp /etc/passwd . `/etc/passwd‘ -> `./passwd‘
4:
清屏
alias cl=‘clear‘
修改方式:
1在$HOME下加入自己的.alias文件
2在$HOME/.bash_profile或.bashrc中加入语句:
. ~/.alias
如果不想用alias别名,可以在命令前加 \ 执行或者使用绝对路径
\cp
/bin/cp
标签:home 详细 iso alias 方式 ls -l nbsp pass strong
原文地址:https://www.cnblogs.com/sunny18/p/8778013.html