Codebase list clitest / 907e3624-ea26-4372-b4d3-22d81a63bf80/main examples / cut.txt
907e3624-ea26-4372-b4d3-22d81a63bf80/main

Tree @907e3624-ea26-4372-b4d3-22d81a63bf80/main (Download .tar.gz)

cut.txt @907e3624-ea26-4372-b4d3-22d81a63bf80/mainraw · history · blame

$ echo "one:two:three:four:five:six" | cut -d : -f 1
one
$ echo "one:two:three:four:five:six" | cut -d : -f 4
four
$ echo "one:two:three:four:five:six" | cut -d : -f 1,4
one:four
$ echo "one:two:three:four:five:six" | cut -d : -f 4,1
one:four
$ echo "one:two:three:four:five:six" | cut -d : -f 1-4
one:two:three:four
$ echo "one:two:three:four:five:six" | cut -d : -f 4-
four:five:six
$