1

Add script to dump the PATH

This commit is contained in:
Evan Pratten 2024-04-02 14:20:52 -04:00
parent a55a60e1e2
commit f8b9d16b5c
2 changed files with 13 additions and 1 deletions

12
scripts/show-path Executable file
View File

@ -0,0 +1,12 @@
#! /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'

View File

@ -2,4 +2,4 @@
import sys
for entry in sys.path:
print(" - " + entry)
print(entry)