• + 0 comments
    for (( i=0; i<100; i++ )); do
      read line
      if [[ -n ${line} ]]; then
        echo ${line} | cut -f 1-3 -d $'\t' -s
      fi
    done;
    

    This is not working for me? I'm not sure why? It works o my local machine and it even follows the suggestion in the editoriral. I can see others have passed the test so not sure what's happening. Thanks in advance.