#!/bin/sh

# for file in *.txt
for file in PSSet_6sec_199*.txt
do
  zip ${file}.zip $file
  rm $file
done
