Options (2)
-f, --field-separatorbooleanPrint the first, 3rd, and 5th item from a line, where items are separated by ':' instead of whitespace
Example:
choose {{[-f|--field-separator]}} '{{:}}' {{0}} {{2}} {{4}}-x, --exclusivebooleanPrint everything from the 2nd to 5th item on the line, excluding the 5th
Example:
choose {{[-x|--exclusive]}} {{1}}:{{4}}Examples (8)
Print the 5th item from a line (starting from 0)
choose 4Print the first, 3rd, and 5th item from a line, where items are separated by ':' instead of whitespace
choose [-f|--field-separator] ':' 0 2 4Print everything from the 2nd to 5th item on the line, including the 5th
choose 1:4Print everything from the 2nd to 5th item on the line, excluding the 5th
choose [-x|--exclusive] 1:4Print the beginning of the line to the 3rd item
choose :2Print all items from the beginning of the line until the 3rd item (exclusive)
choose [-x|--exclusive] :2Print all items from the 3rd to the end of the line
choose 2:Print the last item from a line
choose -1made by @shridhargupta | data from tldr-pages