知识屋:更实用的电脑技术知识网站
所在位置:首页 > 操作系统 > linux

my linux command tips

发布时间:2014-09-05 14:40:54作者:知识屋

my linux command tips
 
grep
grep <expression> <path>
grep '^public' /etc/passwd #search line begin with public in '/etc/passwd'
grep options:
-E enable extends pattern
-i case insensitive
-n show line number
2.  find
find <path> <expressions>:default path . default expressions-print
expression: e1 -a e2:parse e2 only when e1 is true.same as e1 e2
e1,21:parse e1 and e2.
find expresssions:-group -type -user -exec cmd
 
3.echo
echo ${var}char:display value of var and flow with char.
4 readonly var:make the value of the var is read only.
5 export
global variable set.
 
(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜