7 lines
134 B
Plaintext
7 lines
134 B
Plaintext
|
# shellcheck disable=SC2148
|
||
|
show-fpath() {
|
||
|
# shellcheck disable=SC2154
|
||
|
for i in "${fpath[@]}"; do
|
||
|
echo "$i"
|
||
|
done
|
||
|
}
|