shithub: bin.rc

ref: 25f9e2963d99c77c9c6c259820474c89076e0921
dir: /bin/last/

View raw version
#!/bin/rc

# Repeats on standard output the textual output
# of the last command in a current rio window.
# May be considered a complement to "(1).

awk '
	/^'^$prompt(1)^'/ {clear = 1; next}
	{
		if(clear){
			clear = 0
			i = 0
			delete buf
		}
		buf[i++] = $0
	}
	END{
		for(i=0; i<length(buf); i++)
			print buf[i]
	}
' /dev/text