blob: 83054877928646cc491ac8f2abe02a7eb23b4715 (
plain)
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
|
#!/bin/sh
help() {
echo "nx - create new script"
echo "USAGE: nx <script_name>"
}
err() { printf '%s: %s\n' "$0" "$@" >&2; exit 1; }
warn() {
printf '%s: %s [Y/n] ' "$0" "$@" >&2; read -r arg
case "$arg" in ''|y|Y) ;; *) exit ;; esac
}
while getopts 'h' o; do case "$o" in
h) help >&2; exit ;;
*) err "invalid option -- '$OPTARG'" ;;
esac done
shift $((OPTIND - 1))
[ "$#" -lt 1 ] && help && exit 1
[ "$#" -gt 1 ] && err "too many arguments. Only one expected"
new_file() {
cat << EOF > "$1"
#!/bin/sh
help() { echo "$1 -
USAGE:
$1 [OPTION]...
OPTIONS:
-h show this help message"; }
err() { printf '$1: %s\n' "\$@" >&2; exit 1; }
while getopts 'h' o; do case "\$o" in
h) help; exit ;;
*) err "invalid option -- '\$OPTARG'" ;;
esac done
shift \$((OPTIND - 1))
[ "\$#" -lt 1 ] && help >&2 && exit 1
EOF
chmod u+x -- "$1" || exit
}
file="$1"
if [ -f "$file" ]; then
[ ! -w "$file" ] && chmod u+rw "$file"
if [ -s "$file" ]; then
warn "'$file' already exists, edit existing file?" || exit
else
warn "an empty file '$file' already exists, fill and edit?" &&
new_file "$file"
fi
elif [ -e "$file" ]; then
err "'$file' already exists and is a non-regular file"
else
new_file "$file"
fi
ls -lF --color -- "$file"
${EDITOR} "$file"
|