im trying to rename a folder with the "mv" command but its not working
heres what I do
mv カトロ .カトロ
but it just goes to the resulting mv command options,is it becuase of the japanese characters,or becuase the folder is on a diff volume?
mv "カトロ" ".カトロ"
Pardon my ignorance but wouldn't it be easier to just click on the folder and change the name ?
Try quoting the names instead. Obviously I have no idea what you are trying to rename to what, but if it is カトロ to .カトロ, try this:
Code:mv "カトロ" ".カトロ"
Edit: If you copied your exact command line when you posted, the problem is that the " " is a blank character which is not a space " ". mv then sees only one parameter because of this, not two.
WOW strange I dont know if its bug,but I jsut renamed without the qoutes.something to do with spacing of roman and japanese characters!
thanks for your guys help!