我想用一些文本创建1000多个文本文件来测试脚本,如果使用shell脚本或Perl随时使用文本文件,如何创建这么多文本文件。请任何人能帮助我。

最佳答案

for i in {0001..1000}
do
  echo "some text" > "file_${i}.txt"
done

或者如果您想使用Python
for x in range(1000):
    open("file%03d.txt" % x,"w").write("some text")

关于python - 如何创建1000个可用于测试脚本的文件?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2084832/

10-16 00:01