摘要: # csh set dir = "/path/to/directory" foreach file (`ls $dir/*`) echo "文件路径: $file" end #bash for file in *; do echo "文件: $file" done for txt_file in * 阅读全文
posted @ 2025-08-29 18:20 HSLKa 阅读(8) 评论(0) 推荐(0)