Sort by

recency

|

53 Discussions

|

  • + 0 comments

    for((N=1;N<=100;N++)) do read line echo "$line" | cut -f2- done

  • + 0 comments
    while read lines
    do 
        echo "$lines" | cut -f 2-
    done
    
  • + 0 comments

    cut -f2-

  • + 0 comments

    My simple code:

    #!/bin/bash/
    echo "$($* cut -d $'\t' -f 2-)"
    
  • + 0 comments

    cut -f 2-