Home | History | Annotate | Download | only in generated

Lines Matching full:hexadecimal

209 #define HELP_hexedit "usage: hexedit FILENAME\n\nHexadecimal file editor. All changes are written to disk immediately.\n\n-r	Read only (display but don't edit)\n\nKeys:\nArrows        Move left/right/up/down by one line/column\nPg Up/Pg Dn   Move up/down by one page\n0-9, a-f      Change current half-byte to hexadecimal value\nu             Undo\nq/^c/^d/<esc> Quit\n\n"
435 #define HELP_sort "usage: sort [-Mbcdfginrsuz] [-k#[,#[x]] [-t X]] [-o FILE] [FILE...]\n\nSort all lines of text from input files (or stdin) to stdout.\n\n-M month sort (jan, feb, etc).\n-b ignore leading blanks (or trailing blanks in second part of key)\n-c check whether input is sorted\n-d dictionary order (use alphanumeric and whitespace chars only)\n-f force uppercase (case insensitive sort)\n-g general numeric sort (double precision with nan and inf)\n-i ignore nonprinting characters\n-k sort by \"key\" (see below)\n-n numeric order (instead of alphabetical)\n-o output to FILE instead of stdout\n-r reverse\n-s skip fallback sort (only sort with keys)\n-t use a key separator other than whitespace\n-u unique lines only\n-x Hexadecimal numerical sort\n-z zero (null) terminated lines\n\nSorting by key looks at a subset of the words on each line. -k2\nuses the second word to the end of the line, -k2,2 looks at only\nthe second word, -k2,4 looks from the start of the second to the end\nof the fourth word. Specifying multiple keys uses the later keys as\ntie breakers, in order. A type specifier appended to a sort key\n(such as -2,2n) applies only to sorting that key.\n"
517 #define HELP_echo "usage: echo [-ne] [args...]\n\nWrite each argument to stdout, with one space between each, followed\nby a newline.\n\n-n No trailing newline.\n-e Process the following escape sequences:\n \\\\ backslash\n \\0NNN octal values (1 to 3 digits)\n \\a alert (beep/flash)\n \\b backspace\n \\c stop output here (avoids trailing newline)\n \\f form feed\n \\n newline\n \\r carriage return\n \\t horizontal tab\n \\v vertical tab\n \\xHH hexadecimal values (1 to 2 digits)\n\n"
543 #define HELP_cksum "usage: cksum [-IPLN] [file...]\n\nFor each file, output crc32 checksum value, length and name of file.\nIf no files listed, copy from stdin. Filename \"-\" is a synonym for stdin.\n\n-H Hexadecimal checksum (defaults to decimal)\n-L Little endian (defaults to big endian)\n-P Pre-inversion\n-I Skip post-inversion\n-N Do not include length in CRC calculation\n\n"