13 lines
225 B
Bash
Executable File
13 lines
225 B
Bash
Executable File
#! /bin/bash
|
|
set -e
|
|
|
|
# Determine this platform's path separator
|
|
if [ $(uname -o | grep -c Msys) -gt 0 ]; then
|
|
pathsep=";"
|
|
else
|
|
pathsep=":"
|
|
fi
|
|
|
|
# Print each entry in $PATH on its own line
|
|
echo $PATH | tr $pathsep '\n'
|