summaryrefslogtreecommitdiff
path: root/calhighlight.sh
diff options
context:
space:
mode:
Diffstat (limited to 'calhighlight.sh')
-rwxr-xr-xcalhighlight.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/calhighlight.sh b/calhighlight.sh
new file mode 100755
index 0000000..6f91ef7
--- /dev/null
+++ b/calhighlight.sh
@@ -0,0 +1,10 @@
+#!/usr/bin/env bash
+# Highlight the current date when using cal
+function cal() {
+ if [ -t 1 ];
+ then ncal -b "${@}";
+ else command cal "${@}";
+ fi
+ }
+
+