blob: 482d1cf366e78b889eb2c90469d34163eda71239 (
plain) (
blame)
1
2
3
4
5
6
|
#!/bin/sh
mkdir -p ~/.local/bin
# README.md and LICENSE are redundant, stow ignores them by default
stow -v "$(dirname "$0")" -t ~/.local/bin --ignore='.*\.sh$|\.jj|README.md|LICENSE'
|