15 lines
196 B
Text
15 lines
196 B
Text
|
#!/bin/sh
|
||
|
#
|
||
|
# Nico Schottelius <nico@schottelius.(net|org)>
|
||
|
# Date: 04-Apr-2003
|
||
|
# Last Modified: -
|
||
|
#
|
||
|
|
||
|
if [ -z "$1" ]; then
|
||
|
file=.
|
||
|
else
|
||
|
file=$1
|
||
|
fi
|
||
|
|
||
|
find "$file" -name .\*.swp 2>/dev/null
|