#!/bin/sh

echo $1 >> file-list
cat file-list | sort | uniq > file-list-temp
mv -f file-list-temp file-list
