Considera este fragmento, ¿cuál es el resultado?
#!/bin/bash echo "first:second:third" > data.txt cut -d':' -f 2 data.txt
first:second
third
second
first