-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgit-link-alias
executable file
·144 lines (103 loc) · 3.17 KB
/
git-link-alias
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
#!/usr/bin/env bash
## Find true directory this script resides in
__SOURCE__="${BASH_SOURCE[0]}"
while [[ -h "${__SOURCE__}" ]]; do
__SOURCE__="$(find "${__SOURCE__}" -type l -ls | sed -n 's@^.* -> \(.*\)@\1@p')"
done
__NAME__="${__SOURCE__//*(*\/|.*)/}"
__DIR__="$(cd -P "$(dirname "${__SOURCE__}")" && pwd)"
__AUTHOR__='S0AndS0'
__DESCRIPTION__='Links script to Git aliased command'
__ALIAS_SOURCE_DIR__="${__DIR__}/alias-scripts"
__ALIAS_DESTINATION_DIR__="${HOME}/bin"
set -Ee -o functrace
## Provides: failure
source "${__DIR__}/shared_functions/modules/trap-failure/failure.sh"
trap 'failure "LINENO" "BASH_LINENO" "${BASH_COMMAND}" "${?}"' ERR
## Provides: argument_parser <arg-array-reference> <acceptable-arg-reference>
source "${__DIR__}/shared_functions/modules/argument-parser/argument-parser.sh"
## Provides: __license__ <description> <author>
source "${__DIR__}/shared_functions/license.sh"
__usage__() {
local _message="${1}"
cat <<EOF
${__DESCRIPTION__}
Options:
-h --help
Prints this message and exits
-l --license
Prints copyright for this script and exits
-v --verbose
Prints messages about actions
-V --version
Prints version for this script and exits
"${_alias_name:-script-name}"
Name of Git alias, eg. init
Examples:
git link-alias ${_alias_name:-init}
EOF
(( "${#_message}" )) && {
printf >&2 '\n\n## Error: %s\n' "${_message}"
exit 1
}
}
__version__() {
local _version_number
_version_number="$(git tag --list v* | tail -n1)"
_version_number="${_version_number:-v0.0.1}"
_version_number="${_version_number//[^0-9.]/}"
cat <<EOF
${__NAME__} - ${_version_number}
$( __license__ )
Written by ${__AUTHOR__}
EOF
return 0
}
## Save passed arguments and acceptable arguments to Bash arrays
# shellcheck disable=SC2034
{
_passed_args=( "${@:?No arguments provided}" )
_acceptable_args=(
'--help|-h:bool'
'--license|-l:bool'
'--verbose|-v:bool'
'--version|-V:bool'
'--alias-name:print-nil'
)
}
## Pass arrays by reference/name to the `argument_parser` function
argument_parser '_passed_args' '_acceptable_args'
_exit_status="$?"
# shellcheck disable=SC2154
(( _help )) || (( _exit_status )) && {
__usage__
exit "${_exit_status:-0}"
}
# shellcheck disable=SC2154
(( _license )) && {
printf '%s\n' "${__DESCRIPTION__}"
__license__
exit ${_exit_status:-0}
}
# shellcheck disable=SC2154
(( _version )) && {
__version__
exit ${_exit_status:-0}
}
# shellcheck disable=SC2154
(( "${#_alias_name}" )) || {
__usage__ 'No alias script name provided'
}
_script_name="git-${_alias_name}"
_script_source_path="${__ALIAS_SOURCE_DIR__}/${_script_name}"
_script_destination_path="${__ALIAS_DESTINATION_DIR__}/${_script_name}"
[[ -L "${_script_destination_path}" ]] && {
__usage__ "Link already exists for -> ${_alias_name}"
}
[[ -x "${__ALIAS_SOURCE_DIR__}/${_alias_name}" ]] || {
__usage__ "No alias script found with name -> ${_alias_name}"
}
(( _verbose )) && {
printf 'ln -s "%s" "%s"\n' "${_script_source_path}" "${_script_destination_path}"
}
ln -s "${_script_source_path}" "${_script_destination_path}"