shithub: snippets

ref: 6c5f25a2fd0da669d735d457d0e7c04d2dc2efcc
dir: /watch/

View raw version
#!/bin/rc
# calls a command every second, replacing its output with the new one

rfork ne
a0=''
while(){
	a=`"{$*}
	echo -n $a0 | tr -c '' '\x08'
	echo -n $a
	a0=$a
	sleep 1
}