{}
bash 쉘의 확장이 command /path/to/file{1,2,3}
"수평적으로" 작동 할 수 있는지 알고 싶습니다 .
command /path/to/file1 /path/to/file2 /path/to/file3
또는 "수직", 즉
command /path/to/file1
command /path/to/file2
command /path/to/file3
"수평"으로 작동합니다. 루프를 사용하지 않고 여기에 설명된 "수직" 확장을 달성할 수 있는 방법이 있습니까? 즉, 지정된 것과 같은 간단한 방법으로 가능합니까 {}
?
답변1
결과를 에코하고 다음으로 파이프할 수 있습니다 xargs -n1
.
echo /path/to/file{1,2,3} | xargs -n1 command