From 9845988e5e3cc1bec0ae98476f04b46dabc94f5a Mon Sep 17 00:00:00 2001 From: Filipp Lepalaan Date: Mon, 28 Dec 2009 22:02:04 +0200 Subject: First commit --- archive.sh | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 archive.sh (limited to 'archive.sh') diff --git a/archive.sh b/archive.sh new file mode 100755 index 0000000..7b8f8be --- /dev/null +++ b/archive.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# Collect archived assets to a text file +DST="/tmp/finalstore/archive" +if [ ! -d $DST ]; then + mkdir -p $DST +fi +echo $1 >> "${DST}/$(date +'%s').txt" +exit 0 -- cgit v1.2.3