26 lines
621 B
Bash
26 lines
621 B
Bash
#!/usr/bin/env bash
|
|
# This script will add scripts-* to the PATH
|
|
# Copyright 2021 Bryan C. Roessler
|
|
|
|
[[ -f functions ]] && . functions || exit 1
|
|
|
|
is_root
|
|
|
|
install -m 644 functions /usr/local/bin/
|
|
|
|
for script in script-*; do
|
|
install -m755 "$script" /usr/local/bin/
|
|
done
|
|
|
|
# Install manual
|
|
manual="README.html"
|
|
[[ ! -f "$manual" ]] && echo "No manual found, skipping!" && exit 1
|
|
for homedir in /home/*; do
|
|
remove=("manual.pdf" "manual.odt" "Notes.pdf" "Notes.odt")
|
|
for f in "${remove[@]}"; do
|
|
[[ -f "$f" ]] && echo "Removing $f" && rm "$f"
|
|
done
|
|
ln -s "$manual" "${homedir}/Desktop/$manual"
|
|
done
|
|
|