Change the name of a file that contains spaces in the name

filenamesquotingrename

I don't know why but when I go to change this file name with mv command it comes up with the error stating not a directory.

-bash-4.1# mv {{ THEME SANITIZED }}.hacks.css myomega.hacks.css

Best Answer

mv "{{ THEME SANITIZED }}.hacks.css" myomega.hacks.css will work.

Related Question