From 0fbf736c629189b8fdd0e938884041e1585a04d8 Mon Sep 17 00:00:00 2001 From: Alejandro Mery Date: Sun, 14 Sep 2008 12:43:40 +0300 Subject: [PATCH] sde-download: removed -v from copying/linking files found in $altdir --- bin/sde-download | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/sde-download b/bin/sde-download index 25de768..e11a18d 100755 --- a/bin/sde-download +++ b/bin/sde-download @@ -346,11 +346,11 @@ download_file() { echo "Found `basename $bzfile` as $altfile." case "$altcopy" in copy) - cp -v "$altfile" "$bzfile" ;; + cp "$altfile" "$bzfile" ;; move) - mv -v "$altfile" "$bzfile" ;; + mv "$altfile" "$bzfile" ;; *) #link - cp -lv "$altfile" "$bzfile" ;; + cp -l "$altfile" "$bzfile" ;; esac gzfile="$bzfile"