shithub: bin.rc

ref: 4e18dc77f2ab9257b363ccb480a69cb9def901ba
dir: /bin/k/

View raw version
#!/bin/rc
# k - mark position (from sam)

marks = $ws/marks
if(! test -f $marks)
	marks=/tmp/marks.default

cmd = (mark)
while(~ $1 -* && ! ~ $1 --){
	 switch($1){
	 case -c ; cmd = clear
	 case -m ; cmd = mark
	 case -p ; cmd = print
	 case -w ; cmd = window
	 case * ; exit usage
	}
	shift
}
if(~ $1 --) shift

if(~ $#% 0)
	exit 'not in sam'

switch($cmd){
case mark
	echo $%:$%dot(1) $* >>$marks
case print
	echo $%:$%dot(1)
case clear
	>$marks
case window
	test -f $marks && window 'label marks; tail -f '$marks
case *
	exit usage
}