dotfiles/shell/.config/shell/login.d/local-bin-path.sh

6 lines
132 B
Bash
Raw Normal View History

2019-07-24 08:54:06 +00:00
#!/bin/sh
# put personal scripts on the PATH to be callable
2019-07-24 08:54:06 +00:00
PATH=$(du "$HOME"/.local/bin | cut -f2 | tr '\n' ':')$PATH
export PATH