aboutsummaryrefslogtreecommitdiff
path: root/bin/B
blob: 74bdb48ba55e4dc2e8ee04236dec2aa9157b0dc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/sh

if [ $# -eq 0 ]
then
	echo 'usage: B cmd...' 2>&1
	exit 1
fi

if [ "x$DISPLAY" = "x" ]
then
	sam="/tmp/.sam.$USER"
else
	sam="/tmp/.sam.$USER.$DISPLAY"
fi

if [ ! -p $sam ]
then
	echo could not find sam 2>&1
	exit 2
else
	for i
	do
		pwd=`pwd`
		file=`cleanname -d $pwd $i`
		echo "B $file" >>$sam
	done
fi