SyntaxFix
Write A Post
Hire A Developer
Questions
Here sed is replacing all occurrences of % with $ in its standard input.
sed
%
$
As an example
$ echo 'foo%bar%' | sed -e 's,%,$,g'
will produce "foo$bar$".