Codebase list clitest / debian/0.2.0-1 examples / cut.txt
debian/0.2.0-1

Tree @debian/0.2.0-1 (Download .tar.gz)

cut.txt @debian/0.2.0-1raw · 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
$