Sha256: 69542d4ce2ca547ed9052be720e04b252f32f0d0430e4f878e6cbd7cc012fae4
Contents?: true
Size: 260 Bytes
Versions: 4
Compression:
Stored size: 260 Bytes
Contents
function split { local IFS=: local array set -f array=( $@ ) set +f printf '%s\n' "${array[@]}" } # split $PATH function path_prepend { export PATH="$1:$PATH" } function path_append { export PATH="$PATH:$1" } path_prepend "blah" echo $PATH
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
nrser-rash-0.2.3 | dev/scratch/path.sh |
nrser-rash-0.2.2 | dev/scratch/path.sh |
nrser-rash-0.2.1 | dev/scratch/path.sh |
nrser-rash-0.2.0 | dev/scratch/path.sh |