Search results

  1. D

    nohup not logging output in a subshell

    Hi JasKinasis - SRC_DIR = $1 as the calling script passes it. calling.sh: . ftp.sh ARG1 ARG2 ftp.sh: SRC_DIR=$1 ===> is ARG1 from calling.sh FILE=$2 ===> is ARG2 from calling.sh LFTP_LOG=${MYDIR}/${FILE}.log ===> MY_DIR is an environment variable on my system. The LFTP_LOG gets created...
  2. D

    nohup not logging output in a subshell

    I am trying to capture the bytes transferred in a ftp shell. It will be used to compare to the source file sent. The shell will be used by MANY other shells and run on different days. 1. Run with nohup like: nohup ./ftp.sh & dest_bytes="" But the Lftp works and the file was sent successfully...
Top