TODO (1111B)
1 The following list of commands is taken from the toybox roadmap[0] and 2 has been stripped down accordingly. Commands that belong to ubase[1] 3 are not listed here as well as commands that fall outside the scope of 4 sbase such as vi and sh are also not listed here. 5 6 at 7 awk 8 bc 9 diff 10 patch 11 stty 12 13 If you are looking for some work to do on sbase, another option is to 14 pick a utility from the list in the README which has missing flags or 15 features noted. 16 17 What also needs to be implemented is the capability of the tools to 18 handle data with NUL-bytes in it. 19 20 The return values of mdcheckline() in crypt.c need to be fixed (0 -> success, 21 1 -> error). 22 23 [0] http://landley.net/toybox/roadmap.html 24 [1] http://git.suckless.org/ubase/ 25 26 Bugs 27 ==== 28 29 ed 30 -- 31 * cat <<EOF | ed 32 i 33 LLL 34 . 35 s/$/\\ 36 37 * Editing huge files doesn't work well. 38 39 40 printf 41 ------ 42 * Flags for string conversion-specifier (%s) are not supported. 43 * Escape sequences that expand to '%' are treated as beginning of 44 conversion specification. 45 46 tr 47 -- 48 * When a character class is present, all other characters in the 49 string are ignored. 50 51 xargs 52 ----- 53 * Add -L.