[arch-general] script to recursively convert filenames to uppercase
11 Jul
2010
11 Jul
'10
10:14 a.m.
Does anybody know a Perl or Bash script to do what I've written in the subject? TIA
11 Jul
11 Jul
10:31 a.m.
New subject: [arch-general] script to recursively convert filenames to uppercase
On Sun, Jul 11, 2010 at 03:14, F. Gr. <fgr@anche.no> wrote:
Does anybody know a Perl or Bash script to do what I've written in the subject?
I believe this should do it: find -depth -execdir sh -c 'mv {} $(echo {} | tr a-z A-Z)' \; ~celti
10:37 a.m.
New subject: [arch-general] script to recursively convert filenames to uppercase
2010/7/11 Patrick Burroughs <celticmadman@gmail.com>:
I believe this should do it: find -depth -execdir sh -c 'mv {} $(echo {} | tr a-z A-Z)' \;
Looks good, anyway s/he asked for files, so I'd add a '-type f' to the command line. C
5279
Age (days ago)
5279
Last active (days ago)
2 comments
3 participants
participants (3)
-
bardo
-
F. Gr.
-
Patrick Burroughs