200개의 파일이 있다고 가정합니다./tmp
예를 들어: {abc1xyz,abc2xyz,abc3xyz..abc200xyz}
abc38xyz
from to 파일에 "hello"를 쓰고 싶습니다.abc53xyz
답변1
bash
또는 사용 ksh93
:
$ echo "hello" | tee /tmp/abc{38..53}xyz
답변2
for file in /tmp/abc{38..53}xyz;
do
echo "hello" >"$file";
done;
유용할 수 있습니다