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