У меня есть много каталогов в одном месте с файлами разных расширений внутри них. Каталоги следуют стандартному соглашению, но файлы внутри него — нет. Решение, к которому я пытаюсь прийти, — переименовать файлы внутри каждой папки на основе части каталога, в котором они находятся, для списка папок, которые мне нужно просмотреть.
Например:
Каталог: 001234@Redsox#17
file1.pdf
file7A.doc
spreadsheet.xls
Выход:
[email protected]
[email protected]
[email protected]
Проходя через каждый каталог, переименовывая только добавленный код в имени каталога. У меня уже есть базовая структура для работы с процессом, но я не уверен, как лучше всего захватить часть каталога, которая мне нужна
for directory in *; do
pushd "$directory"
index=1
for filename in *; do
target_filename="${directory}$????${filename}"
mv "$filename" "${target_filename}"
((index++))
done
popd
done
решение1
Я бы сделал что-то вроде этого:
# nullglob
# If set, Bash allows filename patterns which match no files to
# expand to a null string, rather than themselves.
shopt -s nullglob
# instead of looping through the dirs, loop through the files
# add al the possible extensions in the list
$ for f in */*.{doc,pdf,xls,txt}; do
# get the file dirname
d=$(dirname "$f")
# using parameter expansion get the part
# of the dirname you need
echo mv -- "$f" "$d/${d%%@*}@$(basename "$f")"
# when you are satisfied with the result, remove the `echo`
done
$ ls -1 001234@Redsox#17/
[email protected]
[email protected]
[email protected]