#! /bin/sh
# Please back up your files before runing this script.
# Use sed to delete row 1 to row 6 for all .txt files in the current folder.
for file in *.txt
do
  sed '1,6d' $file > $file.tmp && mv $file.tmp $file
done

