如何在特定的多个文件中回显?

如何在特定的多个文件中回显?

假设有200个文件/tmp

例如: {abc1xyz,abc2xyz,abc3xyz..abc200xyz}

我想在文件中写“hello”从abc38xyzabc53xyz

答案1

使用bashksh93

$ echo "hello" | tee /tmp/abc{38..53}xyz

答案2

for file in /tmp/abc{38..53}xyz;
do
    echo "hello" >"$file";
done;

可能有用

相关内容