在bash/osx终端中预置多个文件,可以使用以下方法:
for file in file1 file2 file3; do
touch $file
done
xargs
命令:echo "file1 file2 file3" | xargs -n 1 touch
cat
命令:cat << EOF > files.txt
file1
file2
file3
EOF
while read file; do
touch $file
done< files.txt
以上方法都可以在bash/osx终端中预置多个文件。
领取专属 10元无门槛券
手把手带您无忧上云