# HG changeset patch # User HackEso # Date 1612737762 0 # Node ID 15a8f7f3e2e2b9201c3066a1c7e1dd029d4481f8 # Parent 40e2bb60bc2f2eeac3e464e00c16401df5a9dc63 fetch /hackenv/bin/whatwg https://hack.esolangs.org/get/bin/whatwg diff -r 40e2bb60bc2f -r 15a8f7f3e2e2 bin/whatwg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bin/whatwg Sun Feb 07 22:42:42 2021 +0000 @@ -0,0 +1,10 @@ +#!/bin/bash +FILENAME="/tmp/whatwg" +if ![ -e "$FILENAME" ]; then + echo 'what?' + exit -1 +fi +FILESIZE=$(stat -c%s "$FILENAME") +FILEDATE=$(stat -c%y "$FILENAME") +echo 'whatwg HTML specification -- $FILESIZE bytes strong! (as of $FILEDATE)' +exit 0 \ No newline at end of file