9 lines
98 B
Plaintext
Executable File
9 lines
98 B
Plaintext
Executable File
# Bash Subfunction
|
|
|
|
oldIFS=$IFS
|
|
IFS=$'\n'
|
|
for line in $(mdls .env); do
|
|
echo $line
|
|
done
|
|
unset IFS
|