mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-26 11:14:08 +00:00
7 lines
168 B
Bash
Executable File
7 lines
168 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Add a directory to the front of the PATH if it exists and is not already there
|
|
# Usage: x-path-prepend <dir>
|
|
|
|
export PATH="$1${PATH:+":$PATH"}"
|