I'm trying to create a Linux shell script that calls the following command: Code: /opt/rational/base/cots/flexlm.11.8/i386_linux2/lmstat -a My question is the above command lists some output that I need dumped into a text file and saved as $DATE_$TIME.txt and then I need the server to email that text file to a specific email address. My confusion is when I create this Linux bash script, do I need to enter the naming / email information into the script itself or should that be omitted from the script itself and specified in the Crontab line? I've never worked with scripts before so I'm not sure what is proper procedure and such.
hi carlosinfl , you wouldn't be needed to create a script for this just use this command and pipe it to a file and mail.. /opt/rational/base/cots/flexlm.11.8/i386_linux2/lmstat -a > lmstat`date +%F_%T`.txt; mutt -s "Output of the Command" -a lmstat`date +%F_%T`.txt [email protected] and the mail will be send to you at [email protected] you just need to make sure that your server can send the mail to your id..