On 2013-02-21 10:19, [email protected] wrote: > of course: > sed -n '/^\s*<!--/{
We know it's the first comment, so
sed -n '/<!--/{ ... }'
works as well. Convention can cut as fast as code.
On 2013-02-21 10:19, [email protected] wrote: > of course: > sed -n '/^\s*<!--/{
We know it's the first comment, so
sed -n '/<!--/{ ... }'
works as well. Convention can cut as fast as code.