6 lines
98 B
Bash
Executable File
6 lines
98 B
Bash
Executable File
#! /usr/bin/env bash
|
|
set -e
|
|
|
|
# Print each entry in $PATH on its own line
|
|
echo $PATH | tr ':' '\n'
|