12 Jun 2012
libbash weekly report #3
And there goes the 3rd week!
Progress of previous week
- Fix and push the commits from last week
- Bash redirection support
Didn’t get to the support of multiple arguments for the declare builtin, fixing the last week commits took more time than I expected.
But the redirection support was very cool, now it can run something like this:
while read line; do
echo $line;
done < /some/file
Plan for this week
- Support multiple arguments for declare builtin
- Use script content as script name, to make it easy to identify errors
- Improve command arguments parsing, based on concrete cases that don’t work. The work on this will depend on what exactly needs to be fixed, so I don’t know yet ao far can I go here this week.