From 184f78908d5690f4f8d1b74d505c2b3b3ed388c2 Mon Sep 17 00:00:00 2001 From: Ricardo Markiewicz Date: Tue, 26 Oct 2004 02:43:06 +0000 Subject: [PATCH] algunas comillas para evitar posibles problemas con caracteres escapeables --- inst/afimonio | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inst/afimonio b/inst/afimonio index 90ea831..2c24917 100644 --- a/inst/afimonio +++ b/inst/afimonio @@ -77,11 +77,11 @@ while true; do files=1 checkfilename $file if [ "$?" -eq 0 ]; then - mv $SOURCEDIR$file $ACEPTDIR + mv "$SOURCEDIR$file" "$ACEPTDIR" fecha=$(date +%d/%m/%Y-%H:%M) echo "$fecha $USER afimonio:\"Se detecta archivo de llamadas $file\"" >> $LOGFILE else - mv $SOURCEDIR$file $REJECTDIR + mv "$SOURCEDIR$file" "$REJECTDIR" fecha=$(date +%d/%m/%Y-%H:%M) echo "$fecha $USER afimonio:\"Se rechaza el archivo $file\"" >> $LOGFILE fi -- 2.43.0