add source

This commit is contained in:
furrofurry 2025-06-11 23:20:18 +02:00
parent cd63a55d33
commit 04ddae5b54
3 changed files with 271 additions and 0 deletions

21
install.sh Normal file
View file

@ -0,0 +1,21 @@
#!/usr/bin/env bash
#
# Copy asngecko to /usr/local/bin and make it executable.
#
set -euo pipefail
SRC="${1:-./asngecko}"
DEST="/usr/local/bin/asngecko"
if [[ ! -f "$SRC" ]]; then
echo "Error: '$SRC' not found." >&2
exit 1
fi
echo "Installing asngecko to $DEST"
install -Dm755 "$SRC" "$DEST" # -D: create dirs as needed, -m755: chmod +x
echo "Done. Type 'asngecko --help' to verify."
echo syncing file system
sudo sync
echo done.