Posted by askmatt
January 11th, 2010
No Comments
Quickly change a colour in a stylesheet from the command line
Change all instances of ‘#ebbc58′ to ‘#ffff33′ in all files ending .css in the directory ‘/var/www/skin/frontend/default/default/’ and all its sub-directories.
find /var/www/skin/frontend/default/default/ -name “*.css” -print | xargs sed -i ‘s/ebbc58/ffff33/g’


