Eu tenho uma regra que eu gostaria de seguir - se eu gastar mais de 30 minutos trabalhando na construção de um único comando no bash, eu mudo para o python 3.
Esse problema pode ser facilmente resolvido em python:
#/usr/local/bin/python3
import os, re
DIR_TO_SEARCH = os.getcwd() #change this to what you want
for (dirpath, dirnames, filenames) in os.walk(DIR_TO_SEARCH):
if dirpath == DIR_TO_SEARCH:
# you said you just want subdirectories, so skip this
continue
else:
for name in filenames:
full_path = dirpath + '/' + name
#check for the attributes you're looking for. Change this to your needs.
if re.search(r'o*\.nii', name) or os.path.getsize(full_path) > 0:
#rename the file to its directory's name, and move it to the parent dir
print('Moving {} to {}'.format(full_path, dirpath + '.nii'))
os.rename(full_path, dirpath + '.nii')
Em geral, o Python pode ser menos plug-and-play do que ferramentas bash, mas tem a vantagem de ser muito bem documentado e livre de erros. Apenas meus dois centavos.
Sinta-se livre para usar o script acima, eu testei e funciona bem. Felicidades:)