#!/bin/sh if [ $# = 1 ]; then find $1 -type f -size +1048576c -ls|dupfind.pl elif [ $# = 2 ]; then find $1 -type f -size +${2}c -ls|dupfind.pl fi