View Single Post
  #3 (permalink)  
Old 08-Jul-2009, 07:38
FeatherMonkey's Avatar
FeatherMonkey FeatherMonkey is online now
Wise Penguin
 
Join Date: Mar 2008
Posts: 1,550
FeatherMonkey has a spectacular reputation aura aboutFeatherMonkey has a spectacular reputation aura aboutFeatherMonkey has a spectacular reputation aura aboutFeatherMonkey has a spectacular reputation aura about
Default Re: VFAT USB-KEY mounted Issue

I believe Fat won't let you as it is an invalid character, apparently you cant use : or ? going on this ...

https://lists.ubuntu.com/archives/ub...ay/115345.html

You would have to do a rename something like .. or use a gui rename think KRename
Code:
for file in *; do mv "$file" $(echo $file | sed -e 's/:\+\|?/_/g'); done
@malcomlewis I found I could cp on ext3 using :
__________________
Man first, have a try at Info, have a look at Wiki, if all that fails Scroogle!!!!!
If I've helped click on the Rep button I don't know what it does but it sounds cool.
Reply With Quote