why you should document things, no matter how small.
Waider (mayo.dev.ie.alphyra.com) $ > cat gnee
1109 find . -type f | perl -ne ‘while(<>) { chop; $f=$_; $f=~s|^./([^/]+)/|$1:|; $f=~s|/([^/]+)$|.\U$1|; $f=~s/\//-/g; system(“mv $_ $f\n”)}’
Waider (mayo.dev.ie.alphyra.com) $ >
Um. Yes. Looks like it might uppercase filenames and do something like replacing slashes with dashes, but I’m certainly not running it to find out.
1109 find . -type f | perl -ne ‘while(<>) { chop; $f=$_; $f=~s|^./([^/]+)/|$1:|; $f=~s|/([^/]+)$|.\U$1|; $f=~s/\//-/g; system(“mv $_ $f\n”)}’
Waider (mayo.dev.ie.alphyra.com) $ >
Um. Yes. Looks like it might uppercase filenames and do something like replacing slashes with dashes, but I’m certainly not running it to find out.

no subject
These days I usually have scripts echo what I want done, and then remove the safety and re-run them if it looks OK.
no subject
no subject
no subject
no subject