aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/fortune/datfiles/freebsd-tips
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/fortune/datfiles/freebsd-tips')
-rw-r--r--usr.bin/fortune/datfiles/freebsd-tips8
1 files changed, 8 insertions, 0 deletions
diff --git a/usr.bin/fortune/datfiles/freebsd-tips b/usr.bin/fortune/datfiles/freebsd-tips
index 6a2b59ff5fa7..379f772fea88 100644
--- a/usr.bin/fortune/datfiles/freebsd-tips
+++ b/usr.bin/fortune/datfiles/freebsd-tips
@@ -860,3 +860,11 @@ When netstat reports every 8 seconds, it tells traffic in bits per second:
$ netstat -I bge0 8
%
+Using vt(4) on a laptop? Try this sh(1) function. It provides an "h"
+command that prints the last 22 commands executed, the time, remaining
+battery life, and current working directory:
+
+h() { fc -l -22; printf "%s\n" "`date +%H:%M` -- `apm -l`% -- `pwd`"; }
+
+ -- Alexander Ziaee <ziaee@FreeBSD.org>
+%