6
xargs는 언제 필요합니까?
이 xargs명령은 항상 혼란스러워합니다. 그것에 대한 일반적인 규칙이 있습니까? 아래 두 가지 예를 고려하십시오. $ \ls | grep Cases | less 'Cases'와 일치하는 파일을 인쇄하지만 명령을 변경 touch하려면 xargs다음 이 필요합니다 . $ \ls | grep Cases | touch touch: missing file operand Try `touch --help' for more information. $ …
134
command-line
xargs