shell中常用的简单小命令

   ls -l

   cat ( ls -l 'cat /etc/shells')

   tail  (主要是用在查看密码文件,比如/etc/passwd)  tail /etc/shell

 

  set |grep UID(当前用户id)

  set|grep USER (当前用户)

  which ifconfig(查找ifconfig在那个shell中)

  PS1 命令提示符前边的东西

  \可以转义回车

  $1  $2  shell的第一个变量和第二个变量

  $0 名称

 chmod 744 ()

 $#位置参数的数量

unset

export DAY=FIR

 

CTRL+K光标到最后 ---删除

history -c清除命令提示行

alias grep='grep i'

.bashrc 存放别名文件的

alias ll='ls -l '

unalias

你可能感兴趣的:(linux,shell,常用命令)