Dears ,
i want to make a schedule job in linux crowntab ,to moving (cut) files from a FTP directory to a local directory .it's not one time and should be do this every second without stopping . thanks you all very much in advance .
Dears ,
i want to make a schedule job in linux crowntab ,to moving (cut) files from a FTP directory to a local directory .it's not one time and should be do this every second without stopping . thanks you all very much in advance .
Copyright © 2021 Jogjafile Inc.
You can do a loop, with crontab you can't do it because you can only fire it every minute. The other option you can try is do 60 crontabs and do this
The other thing you can do is
This method you have to start the poller every reboot.
EDIT
Lets imagine that your script is called ftp_poller.sh and you have it in your home script folder, lets call it (/home/fitipaldi/scripts/ftp_poller.sh)
ftp_poller.sh content
you can do this:
Ok, this is INSANE and I don't recommend you use this solution
But you have another solution, I think is much better
This method will fire the ftp_poller.sh script, when it finish will wait 1 second and fire it again.
If you dont care if the processes can take more that 1 second and you want a lot of processes doing the same you can do
This method will fire the ftp_poller.sh script and will put it in background, then will sleep 1 second and fire it again infinitely.