mirror of
https://github.com/wahyd4/gvm.git
synced 2026-08-09 21:05:52 +10:00
7 lines
228 B
Bash
7 lines
228 B
Bash
#!/usr/bin/env bash
|
|
function gvm_export_path() {
|
|
export PATH="$GVM_ROOT/bin:`echo "$PATH" | tr ":" "\n" | grep -v '^$' | egrep -v "$GVM_ROOT/(pkgsets|gos|bin)" | tr "\n" ":" | sed 's/:*$//'`"
|
|
export GVM_PATH_BACKUP="$PATH"
|
|
}
|
|
|