#update #gpl #year #license #terminal

app year_update

Used to update the date of license files in GPL-v3 projects

1 stable release

1.2.1 Jun 23, 2024
1.2.0 Feb 25, 2024
1.1.1 Jan 29, 2024
1.1.0 Jan 11, 2024
1.0.0 Jan 8, 2024

#460 in Development tools

Download history 14/week @ 2024-03-29 42/week @ 2024-04-26 140/week @ 2024-06-21 4/week @ 2024-06-28

144 downloads per month

GPL-3.0 license

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>

No runtime deps