Ok, I was able to change all of my files to lower case. The problem is that some of the menus and scripts require upper case script or
txtfile filenames and it's extremely inconsistent. I was hoping
there was a way to create a symbolic link from lower case file names
to upper case filenames, so that I wouldn't have to worry about
that. It wouldn't need to be recursive.
Google Was my friend. I found:
shopt -s extglob
for file in *?([:upper:])* ; do
ln -s "$file" "${file,,}"
done
shopt -s extglob
for file in *?([:upper:])* ; do
ln -s "$file" "${file,,}"
done
Sysop: | CyberNix |
---|---|
Location: | London, UK |
Users: | 20 |
Nodes: | 10 (0 / 10) |
Uptime: | 08:37:33 |
Calls: | 881 |
Files: | 4,214 |
Messages: | 641,245 |