Pregunta

I made a script that renames a folder.

sudo mv MyFolder MyFolder20130610

I run my script and when I see the new folder from console (with ls) I see:

MyFolder20130610?? instead of MyFolder20130610

What am I doing wrong?

Thanks

¿Fue útil?

Solución

Your bash script has Windows newlines. Convert to Unix newlines with dos2unix or similar utility.

If that doesn't help, open your script in a hex editor and remove the stray bytes at the end of that line.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top