Reading data from files on multiple servers via scripting
I need to retrieve data from crontab file via ksh script. I know I can spool the output of crontab -l command to a file, but the thing is, I need to do that on multiple servers from central location.
For example I have my ksh script runnign on Server1 and I need to read crontab files on Server2, Server3, and Server4. Is that possible?
0