diff options
author | Andrew J. Schorr <aschorr@telemetry-investments.com> | 2012-06-10 12:06:32 -0400 |
---|---|---|
committer | Andrew J. Schorr <aschorr@telemetry-investments.com> | 2012-06-10 12:06:32 -0400 |
commit | 058fc8ac436001c3f186bdeaf0d596352483a0b8 (patch) | |
tree | 699a9e28b9adeab33eb3f95e8c31c79ccd6d7e42 /extension/testff.awk | |
parent | dab3a678b3f65ae4cde21ca4b1d4fd24e8a71918 (diff) | |
download | egawk-058fc8ac436001c3f186bdeaf0d596352483a0b8.tar.gz egawk-058fc8ac436001c3f186bdeaf0d596352483a0b8.tar.bz2 egawk-058fc8ac436001c3f186bdeaf0d596352483a0b8.zip |
Remove unused (obsolete) files in the extension directory.
Diffstat (limited to 'extension/testff.awk')
-rw-r--r-- | extension/testff.awk | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/extension/testff.awk b/extension/testff.awk deleted file mode 100644 index 0a0a9b2f..00000000 --- a/extension/testff.awk +++ /dev/null @@ -1,30 +0,0 @@ -BEGIN { - extension("./filefuncs.so", "dlload") - -# printf "before: " -# fflush() -# system("pwd") -# -# chdir("..") -# -# printf "after: " -# fflush() -# system("pwd") - - chdir(".") - - data[1] = 1 - print "Info for testff.awk" - ret = stat("testff.awk", data) - print "ret =", ret - for (i in data) - printf "data[\"%s\"] = %s\n", i, data[i] - print "testff.awk modified:", strftime("%m %d %y %H:%M:%S", data["mtime"]) - - print "\nInfo for JUNK" - ret = stat("JUNK", data) - print "ret =", ret - for (i in data) - printf "data[\"%s\"] = %s\n", i, data[i] - print "JUNK modified:", strftime("%m %d %y %H:%M:%S", data["mtime"]) -} |