mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-26 02:12:33 +01:00
7 lines
130 B
Bash
7 lines
130 B
Bash
# Appends to path arra in background to reduce load timey
|
|
# example
|
|
# path_push /usr/local
|
|
function bg_source() {
|
|
source $1
|
|
}
|
|
|