5 lines
109 B
Bash
5 lines
109 B
Bash
#!/bin/sh
|
|
|
|
# Adds `~/.local/bin` to $PATH
|
|
export PATH="$PATH:${$(find ~/.local/bin -type d -printf %p:)%%:}"
|