~kris/dots

srice

ref: e9b48d06a8541f3eda5c4db90382ab3c77183afb srice/.local/bin/mkscript -rwxr-xr-x 374 bytes
e9b48d06 — Kris Yotam xprofile: systemd-aware pipewire start + blueman-applet; sb-internet: tolerate missing /proc/net/wireless 2 months ago
                                                                                
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
#!/bin/sh
# mkscript -- create a new shell script with boilerplate
set -eu

if [ -z "${1:-}" ]; then
    echo "Usage: mkscript <name>" >&2
    exit 1
fi

name="$1"

if [ -f "$name" ]; then
    echo "File already exists: $name" >&2
    exit 1
fi

cat > "$name" << 'EOF'
#!/bin/sh
set -eu

main() {
    echo "hello"
}

main "$@"
EOF

chmod +x "$name"
echo "[+] Created $name"