1

I've got a simple shell script that runs a few LFTP commands and processes the files.
When running straight from bash I get full output of those LFTP commands on screen.

When running from crontab with the following...
*/5 * * * * /bin/bash /home/user/ftp-getter.sh >> /var/log/ftp-getter.log 2>&1
I only get the output of lines where I am explicitly echoing some output and the output of the date command. The text returned by LFTP doesn't go into the log.

I've tried moving the 2>&1 to before the >> and still get the same result.

When running that crontab command straight from the command line I do get the LFTP output both on screen and in the log file. But not when running in crontab.

Is there something special about the output from LFTP that would cause this and that might apply to other commands when running from a shell script in crontab?

batfastad
  • 456
  • 1
  • 11
  • 22

4 Answers4

1

lftp might be using file descriptors other than STDOUT and STDERR. Check by running the command in strace

strace lftp ...

and look for lines starting with "write":

write(3, ...

The number is the descriptor that the program writes to. Redirect that descriptor as well.

... >> /var/log/ftp-getter.log 2>&1 3>&1
Ansgar Wiechers
  • 4,247
  • 2
  • 18
  • 26
  • Ah yes, there's lines that start `write(1, ...` which contain the output I was expecting. Is `1>&1` valid, would that not redirect STDOUT to STDOUT? Why does this only happen when running the script from crontab? – batfastad Feb 25 '13 at 10:44
  • Descriptor 1 is STDOUT. That's the default, so it's already covered by `>>`. If no additional descriptors are used, try moving the output redirection into the and see if that helps. – Ansgar Wiechers Feb 25 '13 at 11:28
  • Sorry... "moving the output redirection into the" what? – batfastad Feb 25 '13 at 11:49
  • You do the output redirection in the cron job. Instead of that you could modify `ftp-getter.sh` so that the output redirection is done inside the script. Or you could write a wrapper script with the command `/bin/bash /home/user/ftp-getter.sh >> /var/log/ftp-getter.log 2>&1` and then just call that wrapper script in the cron job (`*/5 * * * * /home/user/wrapper.sh`). – Ansgar Wiechers Feb 25 '13 at 11:58
1

Redirecting from the crontab should work, but another approach you could try is to use exec within the script to redirect all output. Use it like so at the beginning of the script:

exec 1>> /var/log/ftp-getter.log 2>&1

Now you don't need to explicitly redirect output of individual commands within the script.

Pete Cornell
  • 128
  • 1
  • 5
  • Better than writing a wrapper script. Though I don't understand why some of the output of the commands in this script is suppressed when running from crontab but not when running directly. – batfastad Feb 26 '13 at 14:57
0

It works for me

*/5 * * * * screen -dmS ftp-getter /bin/bash /home/user/ftp-getter.sh >> /var/log/ftp-getter.log 2>&1
chicks
  • 3,793
  • 10
  • 27
  • 36
0

A common reason for things that don't work in cron, but do work in a shell session is a difference of environment.

Compare the output of the env when run from cron versus the shell. Recall that a shell launched from cron is non-interactive, which could result in differences in how your init scripts provision your environment.

Cameron Kerr
  • 4,069
  • 19
  • 25