Gentoo Archives: gentoo-soc

From: "André Aparício" <aparicio99@×××××.com>
To: gentoo-soc@l.g.o
Subject: [gentoo-soc] libbash - Progress report #7
Date: Tue, 10 Jul 2012 02:37:58
Message-Id: 20120710024506.51b5c8b5@null
1 Hi,
2
3 === Progress of previous week ===
4
5 - Support the 'for' loop with implicit positional list.
6 for arg; do echo $arg; done
7
8 - Support line continuation inside keyword tests.
9 if [[ 1 == 1 &&
10 1 == 1 ]]; then echo "Should print this"; fi
11
12 - Proper "$@" expansion.
13 It was expanding to "1 2 3" instead of "1" "2" "3", and now it
14 expands correctly, and differently for "$@" and "$*" as supposed.
15
16
17 === Plan for this week ===
18
19 Have yet to search for more useful things to fix or implement.
20
21 For now I already have one thing to fix, there's a problem in function
22 names starting with a keyword, like do-func. This isn't very relevant,
23 but happens at least in one eclass.
24
25
26
27 https://github.com/Aparicio99/libbash
28
29 Best regards,
30 André Aparício