summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorTommy Reynolds <Tommy.Reynolds@MegaCoder.com>2006-01-21 14:30:26 +0000
committerTommy Reynolds <Tommy.Reynolds@MegaCoder.com>2006-01-21 14:30:26 +0000
commit692b013f3e861512e07498f4de31ac701957ebb4 (patch)
tree008799bed59b858953c927760d1024a301ce5556 /bin
parent6267bd976c792463e835d728fb59cc7d9ec91637 (diff)
downloadfedora-doc-utils-692b013f3e861512e07498f4de31ac701957ebb4.tar.gz
fedora-doc-utils-692b013f3e861512e07498f4de31ac701957ebb4.tar.xz
fedora-doc-utils-692b013f3e861512e07498f4de31ac701957ebb4.zip
De-bungle the date(1) command within the for-loop to actually use
the date from the command line. Oh, well, it was late at night...
Diffstat (limited to 'bin')
-rw-r--r--bin/fdp-functions2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/fdp-functions b/bin/fdp-functions
index 836c339..316450e 100644
--- a/bin/fdp-functions
+++ b/bin/fdp-functions
@@ -73,7 +73,7 @@ iso2date() {
if [ ${multi} -eq 1 ]; then
echo -ne "${x}\t"
fi
- date -d 2006-01-18 +'%a %b %d %Y'
+ date -d "${x}" +'%a %b %d %Y'
done
}