Sort by

recency

|

148 Discussions

|

  • + 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

  • + 0 comments

    simple cut solution cut -f 1-3