fork download
  1. #!/bin/bash
  2. cd $(mktemp -d)
  3.  
  4. echo "2 10610 0 0 0 0.0105292
  5. 2 10649 0 0 0 0.041959
  6. 2 10682 0 0 0 0.0449746
  7. 2 10705 0 0 0 0.0441639
  8. 2 10797 2 0 0 0.0342728
  9. 2 10955 0 0 0 0.0136986
  10. 2 10957 0 0 0 0.0135135
  11. 2 11124 0 0 0 0.0583367
  12. 2 11336 1 0 0 0.0219502" > input
  13.  
  14. awk '{if ($6 > 0.04) print $6}' input
Success #stdin #stdout 0.01s 4504KB
stdin
Standard input is empty
stdout
0.041959
0.0449746
0.0441639
0.0583367