Sponsored Content
Operating Systems AIX script which take a snap shot of Topas Post 302226363 by pagink on Monday 18th of August 2008 07:59:04 PM
Old 08-18-2008
cd /etc/perf/daily
ls -lrt
topasout -a <<xmwlm>>.file
sort -o <<file>>.csv <<file>>.csv
ftp off and open in nmon

shrug

x='/etc/perf/daily'
cd $x
error=$?
if [[ $error != '0' ]] then
echo "There was an error running script: $0 $(date) please trouble shoot"
echo "This script could not cd to $x to convert the files to the nmon format"
exit
fi
#LIST=$(ls)
LIST=$(ls | grep -v csv | grep xmwlm) #Do not grab any files that have been
#coverted already

for f in $LIST; do
# make the file.csv files here "man topasout" for help
topasout -a $f
sleep 3

# sort the file and set back as the same file name
# so the time stamps are right in nmon
sort -o $f.csv $f.csv
sleep 3

# encode so you can attach the file, and then send it to the exe person
# checking the .forward file if it exists.
uuencode $x/$f.csv $x/$f.csv | mail -s "Your-weekly-$f.csv-file" $USER
error=$?
sleep 3
if [[ $error == '0' ]] then
rm $f.csv
else
echo "There were errors running script $0 at $(date) you will need to clean u
p the CSV files"
fi
done
This User Gave Thanks to pagink For This Post:
 

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

dump .snap question

When using dump, a .snap directory is created in the partition being dumped. I have searched for the reason this directory is created but haven't found any information on its purpose. I have monitored the .snap directory during a dump and I have never seen any files appear in during the dump so... (3 Replies)
Discussion started by: thumper
3 Replies

2. Shell Programming and Scripting

My first shot at variables

Okay, so im setting up a script to start my internet dependent scripts once I am connected to the net. It got complicated because of the different networks I frequent but it goes something like this: n=1 iwconfig wlan0 > wireless.txt m= grep -c MGHS /home/jake/Scripts/wireless.txt o= grep -c... (7 Replies)
Discussion started by: arcnsparc
7 Replies

3. UNIX for Dummies Questions & Answers

snap file for other system?

Hi all For AIX we can snap -gc gather the info how abt other systems is solaris and linux? thanks in advance jiajin (0 Replies)
Discussion started by: lijiajin
0 Replies

4. Red Hat

SNAP EDR issue.

Hi, Does anybody use Enterprise Data Replicator for Network Attached Storage replication. If you do, Do you get the following message in replication logs. "Replication Source file agent No heart beats from the remote target agent on snap01 for 300 seconds: Assuming connection failure" ... (1 Reply)
Discussion started by: uxadmin007
1 Replies

5. AIX

Unable to execute snap command

Hi Friends, I am not able to execute snap -a command in AIX 6 system. Could you please let me know how to make work this command and Path to be set. Thanks in Advance Siva. (4 Replies)
Discussion started by: sivakumarl
4 Replies

6. AIX

Need to grep two lines from the topas command through a Korn Script

I need to grep two lines from topas command in one of my AIX server. Topas Monitor for host: semas001 EVENTS/QUEUES FILE/TTY Wed Jan 29 10:12:06 2014 Interval: 2 Cswitch 764 Readch 4473.1K Syscall 5166 ... (4 Replies)
Discussion started by: rpm120
4 Replies

7. Ubuntu

Ubuntu snap deduplication

Hi, I think the ubuntu snap is great idea. However the fact that it may contain duplications has two disadvantages. 1) eating more space in the storage. 2) eating more space in the internal memory (RAM), it will load the same library more than once to the memory. Now the solution for this is... (0 Replies)
Discussion started by: programAngel
0 Replies

8. AIX

How to get data from SNAP file?

Hi Everyone, Does anyone know if can access /etc/environment from SNAP file to check the time zone from the snap file Objective: The timezone on the server was changed by someone to another timezone, so I want to check what is the old timezone was ? I have an old SNAP file. Does... (4 Replies)
Discussion started by: filosophizer
4 Replies
dcraw2hdrgen(1) 					      General Commands Manual						   dcraw2hdrgen(1)

NAME
dcraw2hdrgen - Parse information in given Digital Camera RAW files and output a hdrgen script for generation of HDR images. SYNOPSIS
dcraw2hdrgen <file1.cr2> [<file2.cr2>...] DESCRIPTION
This program can be used to automatically create an hdrgen script for use with software creating HDR images. The exposure information is extracted from RAW files using the `dcraw` tool. If this script doesn't recognise the exposure settings from the images taken by your camera, please verify if dcraw supports your camera: `dcraw -i -v your_image.cr2`. You should see a detailed information on shot settings including exposure time. Maybe compiling the newest version will help. EXAMPLES
dcraw2hdrgen IMG_0001.CR2 IMG_0002.CR2 IMG_0003.CR2 > sample.hdrgen Creates a sample.hdrgen script for given images. SEE ALSO
dcraw(1) pfsindcraw(1) pfsinhdrgen(1) pfshdrcalibrate(1) BUGS
Please report bugs and comments on implementation to Grzegorz Krawczyk <gkrawczyk@users.sourceforge.net>. dcraw2hdrgen(1)
All times are GMT -4. The time now is 08:37 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy