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

6 lines
132 B
Bash

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