This repository has been archived on 2025-12-28. You can view files and clone it, but cannot push or open issues or pull requests.
inks-scripts/install

11 lines
201 B
Bash
Executable File

#!/usr/bin/env bash
mkdir -p "$HOME/.local/bin"
# If in the scripts folder ...
if [[ $(pwd) == *"/scripts"* ]]; then
cp -r ./* "$HOME/.local/bin"
else
cp -r ./scripts/* "$HOME/.local/bin"
fi