Example Text Select Column Cut command provides ability to select specified column according to character number for all rows. Here we will print all rows 3 character line by line to the console. This will only print single character. 1 $ cut - c3 fruits . txt Select Column Select Column For Character Range In previous example we have printed single character to the terminal. We can also print multiple characters to the console by specifying character range like below. We can see that character index starts from 1. 1 $ cut - c1 - 6 fruits . txt Select Column For Character Range Select Column Using Start Position Another useful feature of cut is specifying only start position up to end. 1 $ cut - c3 - fruits . txt Select Column Using Start Position Select Column Using End Position We can print range from start to the specified position only specifying end position. This will a...