grabFSE.sh 202 B

123456
  1. #!/bin/bash
  2. #put into filename 'list' a list of FSE ids of the form @username@freespeechextremist.com
  3. FILENAME='list'
  4. for x in `cat $FILENAME | sed -s "s/@//" ` ; do torify finger $x ; sleep 1; done;