bash
秋雪夜雨寒
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
xargs用法详解(转载)
refer to: http://czmmiao.iteye.com/blog/1949225 简介 之所以能用到这个命令,关键是由于很多命令不支持|管道来传递参数,而日常工作中有有这个必要,所以就有了xargs命令,例如: 这个命令是错误的 find /sbin -perm +700 |ls -l 这样才是正确的 find /sbin -perm +700 |xargs转载 2016-03-09 13:12:27 · 490 阅读 · 0 评论 -
bash Redirecting_AppendingRedirecting_HereDocument_HereString_etc
refer to: man bash Redirecting Input Redirection of input causes the file whose name results from the expansion of word to be opened for reading on file descriptor n, or the stan-原创 2016-02-24 14:49:09 · 494 阅读 · 0 评论
分享