I want to run a simple command of replacing absolute paths to relative ones inside a CSS file like this:
sed -i \'s/\\/fonts/../fonts/\' /Users/sergeybasharo
sed -i 's/\/fonts/../fonts/' is not a valid sed command, try sed -i 's#/fonts#../fonts#'
sed -i 's/\/fonts/../fonts/'
sed -i 's#/fonts#../fonts#'