From 0d0e32dd544193cbdd4384201e25a58dcdd816b8 Mon Sep 17 00:00:00 2001 From: Cyryl Plotnicki-Chudyk Date: Sat, 25 Oct 2014 12:31:25 +0200 Subject: [PATCH] backup sdcard script: fix for wrong month number --- tools/backup_sdcard.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/backup_sdcard.sh b/tools/backup_sdcard.sh index 25f5a7b8..a3b127c2 100755 --- a/tools/backup_sdcard.sh +++ b/tools/backup_sdcard.sh @@ -7,7 +7,7 @@ fi device=$1 -timestamp=`date +%Y%M%d` +timestamp=`date +%Y%m%d` dest_file="/tmp/$timestamp.dd.xz" echo "about to clone $device to $dest_file"