Sort by

recency

|

87 Discussions

|

  • + 0 comments

    for (( i=1 ; i <=100 ; i++ )){

     read line
     echo "${line}" | cut -c 2,7 
    

    }

  • + 0 comments

    cut -b 2,7

  • + 0 comments

    while read line; do echo "$line" | cut -c 2,7 done

  • + 0 comments

    Simpe code

    for (( i=1 ; i <=100 ; i++ )){
        
         read line
         echo "${line}" | cut -c 2,7 
        
    }
    
  • + 0 comments

    awk '{ print substr(0, 7, 1) }'