Sponsored Content
Top Forums Shell Programming and Scripting Suggestions for Shell Scripting Project Post 302659331 by methyl on Wednesday 20th of June 2012 05:43:09 PM
Old 06-20-2012
I would add some of the more common day-to-day operations:

* Reset a user's password.
* Display all print queues which have something queued.
* Remove an item from a print queue.
* Display mail queue.
* Remove item from mail queue.
* Snapshot of current system performance.
* History of recent system performance.
* Show number of users on the system.
* Show who is on the system complete with IP address.
* Display disc free space compared with set warning limits.
* Read system logs (filtering anything normal). Including hardware logs. Including cron log.
* Read root mail. (I archive the mailbox at 12:00 each weekday to make this manageable and ensure that all cron jobs silent unless they fail). Never send the output from a cron job to /dev/null - one day you will want to read it.
* Emergency find of abnormal large file(s) in the event of a disc space crisis. (Can take hours to write because you need to be able to exclude anything normal). This script could save you because you can be quick by being prepared for the inevitable. It is inevitable that you will encounter a rogue program which will attempt to fill a filesystem.

For the day-to-day server checks I get each system to mail me (and other support staff) with a concise summary of all the services (UP/DOWN) backed with full detail in the event of an actual problem. The fundamental check that the hardware map is the same as yesterday is the most important
 

2 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

shell scripting project for school

i need to prompt the user for a) group of scores b) calculate the lowest and highest scores and overall average c) print out to the screen d ask if user has any more data to process, if so repeat (loop) for a new set of scores if not exit. i have this much,and trust me i know... (1 Reply)
Discussion started by: bodhi 926
1 Replies

2. Homework & Coursework Questions

shell scripting project for school

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: i need to prompt the user for a) group of scores b) calculate the lowest and highest scores and... (1 Reply)
Discussion started by: bodhi 926
1 Replies
SDP(1)							    BSD General Commands Manual 						    SDP(1)

NAME
sdp -- scripting definition (sdef) processor SYNOPSIS
sdp -f {ahst} [-o directory | file | -] [options...] [file] DESCRIPTION
sdp transforms a scripting definition (``sdef'') file, or standard input if none is specified, into a variety of other formats for use with a scriptable application. The options are as follows: -f format Specify the output format. The format may be one or more of the following. Use these when you want to create a scriptable applica- tion: a Rez(1) input describing an 'aete' resource. s Cocoa Scripting ``.scriptSuite'' file. t Cocoa Scripting ``.scriptTerminology'' file. These formats are only necessary when creating a scriptable application that will run on Mac OS X 10.4 (Tiger) or earlier; as of 10.5 (Leopard), an application may use only an sdef. Use these when you want to control a scriptable application: h Scripting Bridge Objective-C header. You do not need to create a corresponding implementation file; Scripting Bridge will create the class implementations at runtime. -i includefile Include the type and class definitions from the specified sdef. It may be repeated to specify multiple files. This option is obso- lete; you should use an XInclude element in the sdef instead. -o directory | file | - Specify where to write the output. There are three styles: directory Write the output to automatically named files in that directory. Depending on the input and formats, sdp may generate several files. file Write all the output to that file. - Write all the output to standard output. The default is '-o .'; i.e., generate files in the current directory. Because Cocoa Scripting requires each suite to be in a separate file, using -o file with -f s or -f t is usually not a good idea. Some output formats have additional options relevant only to that format. For scriptSuite and scriptTerminology files (-f s and -f t): -V version Specify the minimum system version to be compatible with, for example, ``-V -10.4''. The default is to assume the current system ver- sion. Specifying anything before 10.3 will use NSString for 'file' type attributes, and will warn about non-object direct parameters. For Scripting Bridge Objective-C header files (-f h): --basename name, -N name Specify the ``base'' name. This name becomes the base name of the generated header and the prefix attached to all the generated classes. For example, saying --basename iTunes would result in a header file ``iTunes.h'' defining a iTunesApplication class. --hidden, -A Output definitions even for items the scripting definition marks as hidden. All such definitions will be flagged as deprecated, since hidden items are usually hidden for a reason. SEE ALSO
sdef(5) BUGS
sdp's error reporting leaves much to be desired. It does not provide line numbers for errors, though it will describe the element. It will not warn you of certain types of mistakes, such as using two different names with the same code (or vice versa), and will return a zero sta- tus even for erroneous input. Mac OS X July 12, 2007 Mac OS X
All times are GMT -4. The time now is 01:59 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy