Code: Select all
INPUT=`cat $INPUT_FILE`
while read line; do
PROP_NAME=`echo $line | cut -f1 -d'='`
PROP_VALUE=`echo $line | cut -f2- -d'='`
time INPUT="$(echo "$INPUT" | sed "s\`${PROP_NAME}\b\`${PROP_VALUE}\`g")"
done
Niedrige Last: < /p>
real 0m0.011s
user 0m0.002s
sys 0m0.004s
Code: Select all
$foo=bar
$hello=world
^hello=goodbye
< /code>
Beispieleingabe < /p>
This is a story about $hello. It starts at a $foo and ends in a park.
Bob said to Sally "^hello, see you soon"
< /code>
Erwartete Ergebnis < /p>
This is a story about world. It starts at a bar and ends in a park.
Bob said to Sally "goodbye, see you soon"