Chinaunix首页 | 论坛 | 博客
  • 博客访问: 586024
  • 博文数量: 151
  • 博客积分: 3330
  • 博客等级: 中校
  • 技术积分: 1686
  • 用 户 组: 普通用户
  • 注册时间: 2011-01-08 02:41
文章存档

2011年(151)

分类: LINUX

2011-05-01 20:58:50

xargs  是一条Unix和类Unix操作系统的常用命令。它的作用是将参数列表转换成小块分段传递给其他命令,以避免参数列表过长的问题。

EXAMPLES 
 
find /tmp -name core -type f -print | xargs /bin/rm -f 

Find files named core in or below the directory /tmp and delete them. Note that this will work incorrectly if there are any filenames con- taining newlines or spaces. 

find /tmp -name core -type f -print0 | xargs -0 /bin/rm -f 

Find files named core in or below the directory /tmp and delete them, processing filenames in such a way that file or directory names con- taining spaces or newlines are correctly handled. 

cut -d: -f1 < /etc/passwd | sort | xargs echo 

Generates a compact listing of all the users on the system


阅读(1246) | 评论(0) | 转发(0) |
0

上一篇:find 命令和xargs 命令

下一篇:linux YUM 源

给主人留下些什么吧!~~