Linux 中基本的文件和目录管理命令,包括创建目录/文件、复制删除等操作
lrwxrwxrwx 1 root root 10 09-26 11:01 mkdir -> /bin/mkdir
lrwxrwxrwx 1 root root 10 09-26 11:01 touch -> /bin/touch
4.设置命令别名alias
1)查看及验证当前已定义的命令别名: [root@svr5 ~]# alias
alias cp='cp -i'
alias l.='ls -d .* --color=tty' //--color指定ls命令的色彩模式 alias ll='ls -l --color=tty' //执行ll相当于ls -l
alias ls='ls --color=tty'
alias mv='mv -i'
alias rm='rm -i'
alias which='alias | /usr/bin/which --tty-only --read-alias --show-dot --show-tilde'
[root@svr5 ~]# ll install.log //验证别名使用效果
-rw-r--r-- 1 root root 33139 07-10 17:29 install.log
[root@svr5 ~]# ls -l install.log //直接执行原始命令,效果相同 -rw-r--r-- 1 root root 33139 07-10 17:29 install.log
2)定义一个名为lh的命令别名(实际执行“ls -lh”),验证使用效果:
[root@svr5 ~]# alias lh='ls -lh --color=tty'
[root@svr5 ~]# alias