I would like to extract css comments from style.css.
Comments are in the beginning of the css files and they are formatted like this
/*
Author:name
URI:link
etc
*/
After some searches I found :
sed -n '/^\/\*\$,/\*\/$/p' style.css
It didn't work, I had this error :
sed: -e expression #1, char 11: unknown command: `\'
Do you suggest a good solution.
If possible with a good link for a tutorial for basic sed uses for beginners.