summaryrefslogtreecommitdiff
path: root/.local/bin/upt
blob: e7b987409207125d5cbc6af17b0d62ebd871e7f6 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/awk -f
# upt - print uptime in short

BEGIN {
	getline < "/proc/uptime";
	m=$1/60; h=0;
	if (m >= 60) { h=int(m/60); m-=h*60; }
	printf "%ih %im\n", h, m;
}