在Linux中,使用循環獲取文件名可以通過以下幾種方式實現:
for file in /path/to/directory/*; do
if [[ -f "$file" ]]; then # 只處理文件,排除目錄
echo "$file"
fi
done
find /path/to/directory -type f -exec basename {} \;
ls -p /path/to/directory | grep -v /$
在上述示例中,/path/to/directory
是要遍歷的目錄路徑,可以根據自己的需要進行替換。這些命令將打印出目錄中的所有文件名。你可以根據自己的需求在循環中對文件名進行進一步的處理。