This is an old revision of the document!
To apply your burgeoning sysprog skills in the writing of familiar and described UNIX tools.
I have rigged up a grabit for wut1, which contains a directory structure, some useful Makefiles, and a header file to assist you in the development process.
It is your task to implement getopt(3)-style command-line arguments and ensure functionality for the following tools (pick one, but your one must be unique; each person is doing a different one). You may choose to do others for potential bonus point considerations.
The programs are (edit the appropriate section and record your name to claim it; once someone has claimed a program, it is considered unavailable for others in the class to do for core credit):
All of the programs should accept the following command-line arguments (check for program-specific additional ones as well in the appropriate section):
binary.c - helper program to display hex numbers in their binary representation. synopsis: binary [OPTION]... [FILE]... compile: gcc -o binary binary.c -Wall --std=c99 -Werror execute: binary -s "de ad be ef 00 01 5a" or: echo "de ad be ef 00 01 5a" | binary
Additional Command-line arguments to implement:
Claimed by:
parity.c - helper program to check the parity (odd, even, none) of input binary values. synopsis: parity PARITYOPTION [OPTION]... [FILE]... usage: the program takes in a binary value via the the command-line, a file, or from STDIN, and displays the end binary result in accordance with the parity settings. compile: gcc -o parity parity.c -Wall --std=c99 -Werror execute: parity -O -s "10110010" or: echo "10110010" | parity -E
Additional Command-line arguments to implement:
Lack of one of these options should generate an error.
Claimed by:
endian.c - helper program to encode value(s) according to an indicated endianness. synopsis: endian [OPTION]... [FILE]... compile: gcc -o endian endian.c -Wall -Werror --std=c99 execute: endian -s "de ad be ef" -L -8 or: echo "de ad be ef" | endian -B -16
Additional Command-line arguments to implement:
Your program can indicate a “setting not supported” message (and exit) if the -7 argument is specified.
Claimed by:
checksum.c - helper program to calculate checksum of provided values. synopsis: checksum [OPTION]... [FILE]... compile: gcc -o checksum checksum.c -Wall -Werror --std=c99 execute: checksum -s "de ad be ef" or: echo "de ad be ef" | checksum
Additional Command-line arguments to implement:
Claimed by:
Claimed by:
Claimed by:
Claimed by Andrei-abratkov
Claimed by:
Claimed by:
You will be implementing in accordance to the following specifications:
Your standard submission logic applies:
lab46:~/src/sysprog/wut#$ submit sysprog wut# tool.c ...