9 lines
127 B
Plaintext
Executable File
9 lines
127 B
Plaintext
Executable File
# Bash Subfunction
|
|
|
|
oldIFS=$IFS
|
|
IFS=$'\n'
|
|
for line in $(mdls .env); do
|
|
printf "%s "$line | split -d '=' -f 1,2
|
|
done
|
|
unset IFS
|