From 225ab8eef3dda0c149b2889d1af85d802d4019a6 Mon Sep 17 00:00:00 2001 From: Mirek Kratochvil Date: Fri, 6 Jun 2014 10:13:44 +0200 Subject: [PATCH] zb-pull: missing awk --- zb-pull | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zb-pull b/zb-pull index af8f9cd..ca41093 100755 --- a/zb-pull +++ b/zb-pull @@ -21,7 +21,7 @@ local_zfs="$3" newest="N/A" newest_common="N/A" -ssh $ssh_remote "zfs list -t snapshot -r -d 1 -H \"${remote_zfs}\" " | while read l ; do +ssh $ssh_remote "zfs list -t snapshot -r -d 1 -H \"${remote_zfs}\" " | awk '{print $1;}' | while read l ; do #link unix timestamps unixtime=`timestamp "$l"` || continue echo "$unixtime" "$l"