User Tools

Site Tools


notes:sysprog:projects:wut1

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
notes:sysprog:projects:wut1 [2018/01/30 16:17] – [checksum.c] phastin1notes:sysprog:projects:wut1 [2018/02/13 19:25] (current) – [command-line arguments] wedge
Line 15: Line 15:
 All of the programs should accept the following command-line arguments (check for program-specific additional ones as well in the appropriate section): All of the programs should accept the following command-line arguments (check for program-specific additional ones as well in the appropriate section):
  
-  * **-h/-?** display usage information and exit+  * **-h** display usage information and exit
   * **-V** display version information and exit   * **-V** display version information and exit
   * **-s "STRING"** specify STRING as value to process   * **-s "STRING"** specify STRING as value to process
Line 90: Line 90:
   synopsis: endian [OPTION]... [FILE]...   synopsis: endian [OPTION]... [FILE]...
  
-   execute: endian -s "dead beef" -e -16 -b 16+   execute: endian -s "dead beef" -e -16 -b 16
         or: echo "de ad be ef" | endian -E -b 16         or: echo "de ad be ef" | endian -E -b 16
 </code> </code>
Line 96: Line 96:
 Additional Command-line arguments to implement: Additional Command-line arguments to implement:
  
-  * **-#** set wordsize (power of 2 between 4 and 128, 8 is default)+  * **-#** set wordsize (power of 2 between 4 and 128, 8 is default)
   * **-u** also consider underlying bytes in endianness encoding   * **-u** also consider underlying bytes in endianness encoding
   * **-E** encode as big endian   * **-E** encode as big endian
Line 104: Line 104:
 Your program can indicate a "setting not supported" message (and exit) if the **-7** argument is specified. Your program can indicate a "setting not supported" message (and exit) if the **-7** argument is specified.
  
-The **-4** and **-8** arguments are equivalent to **-4** and **-8**, respectively.+The **-4** and **-8** arguments are equivalent to **-4** and **-8**, respectively.
  
-Claimed by:+Claimed by: Dillon Vargeson(dvarges3)
  
 ====checksum.c==== ====checksum.c====
Line 116: Line 116:
    synopsis: checksum [OPTION]... [FILE]...    synopsis: checksum [OPTION]... [FILE]...
  
-    execute: checksum --s "de ad be ef" +    execute: checksum -b 16 -s "de ad be ef" 
-         or: echo "de ad be ef" | checksum -H+         or: echo "de ad be ef" | checksum -b 16
 </code> </code>
  
Line 143: Line 143:
 Additional Command-line arguments to implement: Additional Command-line arguments to implement:
  
-  * **-#** set wordsize (power of 2 between 4 and 128, 8 is default)+  * **-#** set wordsize (power of 2 between 4 and 128, 8 is default)
   * **-b BASE** input/output base (of 2, 8, 10, or 16; base 2 is default)   * **-b BASE** input/output base (of 2, 8, 10, or 16; base 2 is default)
  
-Claimed by:+Claimed by: Ben Schultes (bschulte)
  
 ====addition.c==== ====addition.c====
Line 183: Line 183:
 Additional Command-line arguments to implement: Additional Command-line arguments to implement:
  
-  * **-#** set wordsize (power of 2 between 4 and 128, 8 is default)+  * **-#** set wordsize (power of 2 between 4 and 128, 8 is default)
   * **-b BASE** input/output base (of 2, 8, 10, or 16; base 2 is default)   * **-b BASE** input/output base (of 2, 8, 10, or 16; base 2 is default)
   * **-M "BITMASK"** specify bitmask value for processing (required)   * **-M "BITMASK"** specify bitmask value for processing (required)
Line 192: Line 192:
  
 <code> <code>
-rotate.c   - program to apply perform a bit rotate+rotate.c   - program to perform a bit rotate
              against a set of input values.              against a set of input values.
  
Line 205: Line 205:
 Additional Command-line arguments to implement: Additional Command-line arguments to implement:
  
-  * **-#** set wordsize (power of 2 between 4 and 128)+  * **-#** set wordsize (power of 2 between 4 and 128)
   * **-L #** perform a left rotate operation (shift by # bits; 1 if not specified)   * **-L #** perform a left rotate operation (shift by # bits; 1 if not specified)
   * **-R #** perform a right rotate operation (shift by # bits; 1 if not specified)   * **-R #** perform a right rotate operation (shift by # bits; 1 if not specified)
  
-Claimed by:+Claimed by: Aaron Houghtaling (ahought2)
  
 ====invert.c==== ====invert.c====
notes/sysprog/projects/wut1.1517329020.txt.gz · Last modified: 2018/01/30 16:17 by phastin1