5 lines
132 B
Bash
5 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
|