Search results

  1. S

    Terminal and Mail.app

    if you want to send email from the shell non-interactively you can go: $ echo "here is my message" |mail -s "here is my subject" person@whogetsemail.com this i nice for shell scripts.
  2. S

    Need help with shell scripts

    hey, put the following code into a file called checkq.sh. #!/bin/bash el1=`cat lastenterq` dl1=`cat lastdoneq` # this assumes you are only looking for line changes. not changes in lines. # use bin/diff for that el0=`wc -l enterq|awk '{print $1}'` dl0=`wc -l doneq|awk...
Back
Top