1 stable release
1.2.1 | Jun 23, 2024 |
---|---|
1.2.0 |
|
1.1.1 |
|
1.1.0 |
|
1.0.0 |
|
#514 in Development tools
21 downloads per month
15KB
96 lines
Year Update
#!/bin/bash
dir=$1
old_year=$2
new_year=$3
if [[ $# -ne 3 || ! -d $dir ]]; then
echo "Usage: <dir> <old_year> <new_year>"
exit 1
fi
files=$(find "$dir" -type f -name "*.rs")
for file in $files; do
if [[ -f $file ]]; then
sed -i "1,5s/$old_year/$new_year/g" "$file"
fi
done
echo "Successful replace"
chmod +x year_update.sh
sudo mv year_update.sh /usr/local/bin/year_update
Usage
Usage: <dir> <old_year> <new_year>