aboutsummaryrefslogtreecommitdiff
path: root/bin/B
blob: fb45d3e443198facb1a26c88517eea22aaa795b7 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/bin/sh

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

for i
do
	plumb $i
done
exit 0

if [ "x$DISPLAY" = "x" ]
then
	sam="/tmp/.sam.$USER"
else
	if [ "$DISPLAY" = ":0" ]
	then
		DISPLAY=:0.0
	fi
	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`
		line=`echo $file | sed 's/.*://'`
		file=`echo $file | sed 's/:.*//'`
		echo "B $file" >>$sam
		if [ "x$line" != "x" -a "x$line" != "x$file" ]
		then
			echo "$line" >> $sam
		fi
	done
fi