Sort by

recency

|

52 Discussions

|

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

  • + 0 comments
    while read line;
    do
        echo "$line" | cut -d $'\t' -f 2-;
    done;