10 lines
156 B
Bash
10 lines
156 B
Bash
#!/bin/sh
|
|
|
|
if [ "$#" -ne 2 ]
|
|
then
|
|
echo "Usage: $0 [old-year] [new-year]"
|
|
exit 1
|
|
fi
|
|
|
|
find . -type f -exec sed -i "s/$1 Olive Team/$2 Olive Team/g" {} \;
|