我有一个 perl 脚本,我无法以 Excel 或文本文件格式获取脚本的输出。有人可以帮我弄清楚吗?
perl -MPOSIX -e '
opendir D, "." || die "open .: $!\n";
for (sort grep {!/^.{1,2}\z/} readdir D) {
if (@s = lstat$) {
printf("%-58s %s %s\n", $_,
map {strftime("%d-%m-%y", localtime $)} ($s[9], $s[8]))
} else {warn "$: $!\n"}
}'
答案1
将上面的脚本保存在文件中,调用它myscript.pl
并在终端上运行它:
perl -w myscript.pl > /output_folder/my_output.txt