#! /bin/sh

case $# in
  1) cut -f$1 -d, ntw_raw.dat > rawcut.dat
     ;;
  *) echo Usage: $0 LIST
     echo Example: $0 1-7,8,10
     ;;
esac
