标签:directory 字母 col -- symbol 管理 事物 usr str
bash shell 是GNU 开发的一种命令解释器
[root@Zhang-linux ~]#
[test@Zhang-linux ~]$
[root@qls ~]# ls -l /root #命令+选项+参数
total 4
-rw-------. 1 root root 1271 Oct 23 12:20 anaconda-ks.cfg
中括号中的 可以省略
command not found 找不到命令
No such file or directory 没有这个文件或目录
选项
[root@qls ~]# yum install -y bash-completion bash-completion-extra
[root@qls ~]# systemctl res
rescue reset-failed restart
系统默认不支持,需要安装软件
可以自动补全路径.
[root@qls ~]# alias
alias cp=‘cp -i‘
alias egrep=‘egrep --color=auto‘
alias fgrep=‘fgrep --color=auto‘
alias grep=‘grep --color=auto‘
alias l.=‘ls -d .* --color=auto‘
alias ll=‘ls -l --color=auto‘
alias ls=‘ls --color=auto‘
alias mv=‘mv -i‘
alias rm=‘rm -i‘
alias which=‘alias | /usr/bin/which --tty-only --read-alias --show-dot --show-tilde‘
利用alias命令可以自定义别名
[root@qls ~]# alias wang=‘ping baidu.com‘
[root@qls ~]# wang
PING baidu.com (39.156.69.79) 56(84) bytes of data.
64 bytes from 39.156.69.79 (39.156.69.79): icmp_seq=1 ttl=128 time=30.0 ms
64 bytes from 39.156.69.79 (39.156.69.79): icmp_seq=2 ttl=128 time=28.0 ms
个人
[root@qls ~]# ll -a .bash*
-rw-r--r--. 1 root root 176 Dec 29 2013 .bash_profile
-rw-r--r--. 1 root root 176 Dec 29 2013 .bashrc
这两个隐藏文件是配置别名和环境变量的
全局
[root@Zhang-linux ~]# ll /etc/profile
-rw-r--r--. 1 root root 1922 Oct 24 11:38 /etc/profile
[root@Zhang-linux ~]# ll /etc/profile.d/*.sh
[root@Zhang-linux ~]# ll /etc/bashrc
-rw-r--r--. 1 root root 2853 Oct 31 2018 /etc/bashrc
命令 unalias + 别名
输入命令 history 查看所有操作命令历史
删除命令记录 history -d + 编号
讲命令记录写入文件 history -w
标签:directory 字母 col -- symbol 管理 事物 usr str
原文地址:https://www.cnblogs.com/Qi-Litang/p/11736186.html