Posts by Marcio Conceicao • 1 point
1 post
-
0
votes1
answer36
viewsA: Shell script error while renaming a large set of folders
You want to make this recursive? If using the command: find . -maxdepth 2 -type d | sort | tac to list directories. The Sort and tac are to process in reverse order.