grep和正则表达式

      cat   >> a.txt << OVER 表示下面的输入将被输入导向到a.txt这个文件,输入截止到输入OVER为止。
      head (+数字)输出文件的前面N行,tail 则是输出文件的后面几行。tail -f可以查看动态的文件,一旦文件更新,就会显示出来。
      grep    很重要的命令,配合管道使用,非常好用,(Global  search  regular expression and print out the line)全面搜索的正则表达式并表示出来,正则表达式的匹配符号 ^$.*[] [^]\
 
 
 
 
 
Set env ,printenv 可以查看环境变量
/etc/profile
/etc/profile.d/*
/etc/bashrc
 
家目录下的
~/.bash_profile
~/.bashrc
 
 
分为登录 shell 和非登录 shell
登录 shell 对上述文件读取顺序:
/etc/profile―>/.bash_profile-- à /etc/profile.d/* à ~/.bashrc--- à -/etc/bashrc
非登录 shell
~/.bashrc―>/etc/bashrc à /etc/profile.d/*
 
  trap command SINGAL
 可以用来捕捉一个信号来激活执行命令 

你可能感兴趣的:(正则表达式,职场,grep,休闲)