#!/bin/sh

fdname=$1

for dev in /dev/${fdname}*; do
	rm -f $dev
done
