various shell script fixes.
add 9a, 9c, 9l wrapper scripts.
label sets label on xterm/9term
diff --git a/bin/B b/bin/B
index c1a4b16..74bdb48 100755
--- a/bin/B
+++ b/bin/B
@@ -18,16 +18,10 @@
 	echo could not find sam 2>&1
 	exit 2
 else
-	pwd=`pwd`
 	for i
 	do
-		case $i in
-		/*)
-			echo "B $i" >>$sam
-			;;
-		*)
-			echo "B $pwd/$i" >>$sam
-			;;
-		esac
+		pwd=`pwd`
+		file=`cleanname -d $pwd $i`
+		echo "B $file" >>$sam
 	done
 fi