#!/bin/bash
# This script will read one line at a time and swap key/value
# For instance, the line "word 100" will become "100 word"

while read key val
do
 if (( val > 100 )); then
  printf "%s\t%s\n" "$val" "$key"
 fi
done  
