Codebase list clitest / ff84d39f-ab0a-44f6-b69b-e3994ea443a3/upstream examples / cut.txt
ff84d39f-ab0a-44f6-b69b-e3994ea443a3/upstream

Tree @ff84d39f-ab0a-44f6-b69b-e3994ea443a3/upstream (Download .tar.gz)

cut.txt @ff84d39f-ab0a-44f6-b69b-e3994ea443a3/upstreamraw · 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
$