[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[no subject]
- <!--x-content-type: text/plain -->
- <!--x-date: Fri Feb 20 11:15:35 2004 -->
- <!--x-from-r13: yvfgf ng ploregrpupnsr.arg (@nguna X. Gaqrejbbq) -->
- <!--x-message-id: [email protected] -->
- <!--x-reference: [email protected] --> "http://www.w3.org/TR/html4/loose.dtd">
- <!--x-subject: [ale] shell scripting baby questions... -->
- <li><em>date</em>: Fri Feb 20 11:15:35 2004</li>
- <li><em>from</em>: lists at cybertechcafe.net (Nathan J. Underwood)</li>
- <li><em>in-reply-to</em>: <<a href="msg00743.html">[email protected]</a>></li>
- <li><em>references</em>: <<a href="msg00743.html">[email protected]</a>></li>
- <li><em>subject</em>: [ale] shell scripting baby questions...</li>
- Hash: SHA1
Ok, I'm gonna step out on a limb here. Do you need the quotation marks
around the 0 in this case? Also, should the variable name have quotes
around it?
~ if [ "$infectionsDetected" eq 0 ]
~ then
~ rm -f $logPath/$infectedLogName
~ fi
nathan
Keith Morris - IQ wrote:
| let me start out by saying thanks for all the help you all have been to
| me in the past (both directly and indirectly). thanks.
|
| I'm starting out will shell scripting (so new I'm still wet behind the
| ears) and am writing my first really useful script. I am using
| BitDefender free command line virus scanner to scan for virii and
| working on a script to automate the process to put into a cron job. the
| basic functionality is working except for the checking to see if any
| virii were detected. I'm not clear on the string/binary operators in
| the if statement and can't get it to work out correctly.
|
| If someone has time and would be willing to look at this script and 1.
| help me get the virii log detection working, and 2. possibly show me a
| couple of hints to make this more efficient. Thanks.
|
| --- start script ---
|
| #!/bin/bash
| #
| # Script to run BitDefender nightly and report
| # the full scan as well as create an infected
| # file report
| #
|
| # file and path variables
| reportTime=`date +%y%m%d_%H%M%S`;
| logName="scan_$reportTime.log";
| infectedLogName="infected_$reportTime.log";
| logPath="/home/samba/production/vlogs";
| dirToScan="/home/samba/production";
|
| # update virus defs
| /opt/bdc/bdc --update;
|
| # run virus scan with logging
| /opt/bdc/bdc --arc --disinfect --log=$logPath/$logName $dirToScan;
|
| # list all found infected files into an infected log
| cat $logPath/$logName | grep infected: > $logPath/$infectedLogName;
|
| # find out if there were any found infections
| infectionsDetected=`cat $logPath/$infectedLogName | wc -l`;
|
| # if no virii were detected, deleted infected log file.
| # *!!! this ain't workin' !!!*
|
| if [ $infectionsDetected eq "0" ]
| then
| rm -f $logPath/$infectedLogName
| fi
|
| # tar and gzip the scan logfile and remove the uncompressed log
| tar -czf $logPath/$LogName.tgz $logPath/$infectedLogName;
| rm -f $logPath/$logName;
|
| --- end script ---
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.4 (MingW32)
Comment: Using GnuPG with Thunderbird - <a rel="nofollow" href="http://enigmail.mozdev.org">http://enigmail.mozdev.org</a>
iD8DBQFANjJnl9gX8cEx2b4RAgnCAJ9RQi0i2y8OMqQlB0M2v3GINWH/gACfWIY7
rEoabvJPjZoiTv6By1cwA0E=
=CN2N
-----END PGP SIGNATURE-----
</pre>
<!--X-Body-of-Message-End-->
<!--X-MsgBody-End-->
<!--X-Follow-Ups-->
<hr>
<ul><li><strong>Follow-Ups</strong>:
<ul>
<li><strong><a name="00747" href="msg00747.html">[ale] shell scripting baby questions...</a></strong>
<ul><li><em>From:</em> byron at cc.gatech.edu (Byron A Jeff)</li></ul></li>
<li><strong><a name="00759" href="msg00759.html">[ale] shell scripting baby questions...</a></strong>
<ul><li><em>From:</em> esoteric at 3times25.net (Geoffrey)</li></ul></li>
</ul></li></ul>
<!--X-Follow-Ups-End-->
<!--X-References-->
<ul><li><strong>References</strong>:
<ul>
<li><strong><a name="00743" href="msg00743.html">[ale] shell scripting baby questions...</a></strong>
<ul><li><em>From:</em> keith at iqtv.com (Keith Morris - IQ)</li></ul></li>
</ul></li></ul>
<!--X-References-End-->
<!--X-BotPNI-->
<ul>
<li>Prev by Date:
<strong><a href="msg00744.html">[ale] shell scripting baby questions...</a></strong>
</li>
<li>Next by Date:
<strong><a href="msg00746.html">[ale] shell scripting baby questions...</a></strong>
</li>
<li>Previous by thread:
<strong><a href="msg00743.html">[ale] shell scripting baby questions...</a></strong>
</li>
<li>Next by thread:
<strong><a href="msg00747.html">[ale] shell scripting baby questions...</a></strong>
</li>
<li>Index(es):
<ul>
<li><a href="maillist.html#00745"><strong>Date</strong></a></li>
<li><a href="threads.html#00745"><strong>Thread</strong></a></li>
</ul>
</li>
</ul>
<!--X-BotPNI-End-->
<!--X-User-Footer-->
<!--X-User-Footer-End-->
</body>
</html>