summaryrefslogtreecommitdiffstats
path: root/subdir_dev
blob: 01b9dcc5c08f85d131063898a442a77578306a17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

# scripts that moves devices to the $1/ subdir.

if [ "$ACTION" = remove ] ; then
	mv $1/$MDEV $MDEV
	rmdir $1 2>/dev/null
else
	mkdir -p $1 
	mv $MDEV $1
fi