]> code.delx.au - dotfiles/blobdiff - bin/dates
moved to scripts repository
[dotfiles] / bin / dates
diff --git a/bin/dates b/bin/dates
deleted file mode 100755 (executable)
index da607d2..0000000
--- a/bin/dates
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/bash
-
-list="
-America/Los_Angeles
-America/Chicago
-America/New_York
-Europe/London
-UTC
-Asia/Ho_Chi_Minh
-Australia/Perth
-Australia/Sydney
-"
-
-for tz in $list; do
-    printf "%-25s" "$tz"
-    TZ="$tz" date
-    echo
-done
-