1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
mycopy1: Simple application from the genparse info page.
Doesn't use genparse.
mycopy2: Extends mycopy1 with some command line options.
Uses getopt_long() but still doesn't use genparse.
mycopy3: Same as mycopy2 but command line parsing is now
generated from genparse.
mycopy4: Same as mycopy3 but in C++.
mycopy5: Same as mycopy3 but in Java.
echo: Demo version of the echo command from the GNU coreutils.
ls: Demo version of the ls command from the GNU coreutils.
mv: Demo version of the mv command from the GNU coreutils.
rm: Demo version of the rm command from the GNU coreutils.
tail: Demo version of the tail command from the GNU coreutils.
uname: Demo version of the uname command from the GNU coreutils.
wc: Demo version of the wc command from the GNU coreutils.
ping: Demo version of the ping command from the GNU inetutils.
|