This website requires JavaScript.
Explore
Help
Sign In
seasharp
/
mdlspipe
Watch
1
Star
0
Fork
0
You've already forked mdlspipe
Code
Issues
Pull Requests
Projects
Releases
Wiki
Activity
9c02331baa
mdlspipe
/
mdls-parse
9 lines
98 B
Plaintext
Raw
Normal View
History
Unescape
Escape
On branch parse-mdls Changes to be committed: new file: mdls-parse Bash subfunction to parse mdls data and produce data for SQL tables
2022-03-26 18:07:49 +00:00
# Bash Subfunction
Setting IFS for proper loop output
2022-03-26 18:22:50 +00:00
oldIFS=$IFS
IFS=$'\n'
for loop echoing mdls output
2022-03-26 18:21:45 +00:00
for line in $(mdls .env); do
echo $line
done
Setting IFS for proper loop output
2022-03-26 18:22:50 +00:00
unset IFS
Reference in New Issue
Copy Permalink