7 lines
134 B
Plaintext
Raw Permalink Normal View History

2024-10-29 22:57:09 -05:00
# shellcheck disable=SC2148
show-fpath() {
# shellcheck disable=SC2154
for i in "${fpath[@]}"; do
echo "$i"
done
}