Revision 215df671be6ab6c53dce424ea1cd0cde803d97dd authored by Peter Boyle on 02 February 2022, 02:45:38 UTC, committed by GitHub on 02 February 2022, 02:45:38 UTC
2 parent s 135808d + 1b6b125
Raw File
substitute
#!/bin/bash

export LANG=C

WAS=$1
shift
IS=$1
shift

while (( "$#" )); do

echo $1
sed -e "s@${WAS}@${IS}@g" -i .bak $1

shift

done
back to top