我在centos上遇到for循环的问题:
我正在尝试使用readpst库转换许多.pst文件:
以下工作正常:
/bin/readpst -o /destination_directory -M -S -e -D /source_location/sample.pst
但是,当我尝试运行时:
for i in 'cat list_all_psts.txt'; do /bin/readpst -M -S -e -D /source_location/sample.pst -o /destination_directory; done
打开文件时出现错误。
所以我尝试添加“ sleep 30”:
for i in 'cat list_all_psts.txt'; do /bin/readpst -M -S -e -D /source_location/sample.pst -o /destination_directory; sleep 30; done
无济于事。 有谁知道这个语法有什么问题吗? 任何帮助将不胜感激
关于, R