-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvcsblame
executable file
·52 lines (40 loc) · 1.11 KB
/
vcsblame
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
#!/bin/bash
#
# Script that blames a file
#
# Set usage output
USAGE="[-h |--help] [-l <line> | --line=<number>] [-t <tag> | --tag=<tag>] [-p <path> | --path=<path>] [<file>]"
LONGUSAGE="\t-h, --help\n\t\tPrint this help message
\t-l <line>, --line=<number>\n\t\tLook up version at <number> and print it's info
\t-t <tag>, --tag=<tag>\n\t\tUse speecified tag
\t-p <path>, --path=<path>\n\t\tUse <path> as the working dir (default: .)
\t<file>\n\t\tFile to annotate"
# Standard functions
source ${SCRIPTS}/functions.sh
# Script name
ME=$(basename $0)
# Parse arguments
ARGS=`getopt -o hl:p:t: --long help,line:,path:,tag: -n "${ME}" -- "$@"`
if [ $? != 0 ] ; then
usage
fi
eval set -- "$ARGS"
while true ; do
case "$1" in
-h|--help) usage; shift ;;
-l|--line) LINE=$2 ; shift 2 ;;
-t|--tag) TAG=$2 ; shift 2 ;;
-p|--path) BASEPATH=$2 ; shift 2 ;;
--) shift ; break ;;
* ) usage "Invalid argument $1";;
esac
done
# Remaining arguments are in $1, $2, etc. as normal
if [ -z "$1" ]; then
usage
fi
if [ -n "${BASEPATH}" ]; then
cd "${BASEPATH}" || die "failed to CD to ${BASEPATH}"
fi
vcs_detect
vcs_blame $1 $LINE