Sort by

recency

|

149 Discussions

|

  • + 0 comments

    as the tab is the default delimiter of cut. so you can use:

    cut -f1-3
    
  • + 0 comments

    echo "$(cut -f 1-3)"

  • + 0 comments

    cut -f -3

  • + 0 comments

    Simple Code

    while read line
    do 
        echo "$line" | cut -f 1-3
    done
    
  • + 0 comments

    cut -f 1,2,3