Alexandre Santos wrote: > I'm having difficulties setting up a cron job, and would need some help: > > The cron job launches a script that should append text to a file. > Here's an example in the .crontab: > > * * * * * run-in-pagsh --fg date date>> $HOME/folder/file.txt >
I think this is the result of a simple confusion: the ">>" notation is being interpreted by the initial shell process, not run inside a pagsh. Therefore, the file writing happens without AFS tokens. You could fix the problem by putting the whole command to run inside a separate shell script, using some additional quoting, etc.. _______________________________________________ HCoop-Help mailing list [email protected] https://lists.hcoop.net/listinfo/hcoop-help
