10 Jul 2012
libbash weekly report #7
Progress of previous week
- Support the for loop with implicit positional list.
for arg;
do echo $arg;
done
- Support line continuation inside keyword tests.
if [[ 1 == 1 &&
1 == 1 ]]; then echo "Should print this"; fi
- Proper
"$@"
expansion. It was expanding to"1 2 3"
instead of"1" "2" "3"
, and now it expands correctly, and differently for "$@" and "$*" as supposed.
Plan for this week
Have yet to search for more useful things to fix or implement.
For now I already have one thing to fix, there's a problem in function names starting with a keyword, like do-func. This isn't very relevant, but happens at least in one eclass.