diff options
Diffstat (limited to '')
-rwxr-xr-x | common/scripts/cprh.sh | 57 | ||||
l--------- | templates/c/scripts/cprh.sh | 1 | ||||
l--------- | templates/latex/academia/scripts/cprh.sh | 1 | ||||
l--------- | templates/latex/letter/scripts/cprh.sh | 1 | ||||
l--------- | templates/rust/scripts/cprh.sh | 1 | ||||
l--------- | templates/shell/scripts/cprh.sh | 1 |
6 files changed, 0 insertions, 62 deletions
diff --git a/common/scripts/cprh.sh b/common/scripts/cprh.sh deleted file mode 100755 index 9582575..0000000 --- a/common/scripts/cprh.sh +++ /dev/null @@ -1,57 +0,0 @@ -#! /usr/bin/env sh - -die() { - echo "$@" 1>&2 - exit 1 -} - -help() { - cat <<EOF -A copyright header managment tool. - -USAGE: - cprh.sh [OPTIONS] contribute NAME EMAIL FILE.. - -OPTIONS: - --help | -h - Display this help and exit. - -ARGUMENTS: - NAME := [[git config user.name]] - Your name. - - NAME := [[git config user.email]] - Your email address. - - FILE := [[git diff --name-only --cached]] - The file you want to change. This can be given multiple times. -EOF -} - -for arg in "$@"; do - case "$arg" in - "--help" | "-h") - help - exit 0 - ;; - *) - echo "'$1' is not a recognized option. See --help for more!" 1>&2 - exit 1 - ;; - esac -done - -user_name="$1" -[ -z "$user_name" ] && die "No NAME set! See --help for more" - -user_email="$2" -[ -z "$user_email" ] && die "No EMAIL set! See --help for more" -shift 2 - -styleOne="" -styleTwo="" -[ "$COMMENT_STYLE" ] && styleOne="--style" && styleTwo="$COMMENT_STYLE" - -# The styleTwo must be unquoted to avoid adding empty args to reuse -# shellcheck disable=2086 -reuse annotate --copyright "$user_name <$user_email>" --copyright-prefix string-c --template default --multi-line $styleOne $styleTwo diff --git a/templates/c/scripts/cprh.sh b/templates/c/scripts/cprh.sh deleted file mode 120000 index d0101a2..0000000 --- a/templates/c/scripts/cprh.sh +++ /dev/null @@ -1 +0,0 @@ -../../../common/scripts/cprh.sh \ No newline at end of file diff --git a/templates/latex/academia/scripts/cprh.sh b/templates/latex/academia/scripts/cprh.sh deleted file mode 120000 index 03ffa2a..0000000 --- a/templates/latex/academia/scripts/cprh.sh +++ /dev/null @@ -1 +0,0 @@ -../../../../common/scripts/cprh.sh \ No newline at end of file diff --git a/templates/latex/letter/scripts/cprh.sh b/templates/latex/letter/scripts/cprh.sh deleted file mode 120000 index 03ffa2a..0000000 --- a/templates/latex/letter/scripts/cprh.sh +++ /dev/null @@ -1 +0,0 @@ -../../../../common/scripts/cprh.sh \ No newline at end of file diff --git a/templates/rust/scripts/cprh.sh b/templates/rust/scripts/cprh.sh deleted file mode 120000 index d0101a2..0000000 --- a/templates/rust/scripts/cprh.sh +++ /dev/null @@ -1 +0,0 @@ -../../../common/scripts/cprh.sh \ No newline at end of file diff --git a/templates/shell/scripts/cprh.sh b/templates/shell/scripts/cprh.sh deleted file mode 120000 index d0101a2..0000000 --- a/templates/shell/scripts/cprh.sh +++ /dev/null @@ -1 +0,0 @@ -../../../common/scripts/cprh.sh \ No newline at end of file |