Sponsored Content
Full Discussion: Ksh script
Top Forums Shell Programming and Scripting Ksh script Post 22742 by usfrog on Monday 10th of June 2002 11:27:58 AM
Old 06-10-2002
If this doesn't work, try:

find / -name tppfis59r_[0-9][0-9][0-9]_job
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

SQL Script run in KSH Script

I've got a SQL script that is executed through a UNIX ksh script. It is working fine, but I wanted to add a line to put a date/time stamp in the log file that it generates. This is more of a SQL question, but I'm hoping someone can help me get the date/time...I've changed the script with the... (2 Replies)
Discussion started by: dstinsman
2 Replies

2. Shell Programming and Scripting

executing a ksh script from another ksh script

Hi, I'm new to unix scripting.How can i call a script from another script. I have a.ksh and b.ksh .I have to call b.ksh from a.ksh after it is successfully exceuted. I tried using #!/bin/ksh -x in a.ksh and at the end i have used /path/b.ksh My problem is it is executing only a.ksh.it... (6 Replies)
Discussion started by: ammu
6 Replies

3. Shell Programming and Scripting

how to convert unix .ksh script to windows .batch script

I am using awk in my .ksh script but when I am trying to run in windows its not recognising awk part of the ksh script , even when I changed it to gawk it does not work, this is how my .ksh and .bat files look like. thanx. #!/bin/ksh egrep -v "Rpt 038|PM$|Parameters:|Begin |Date: |End... (1 Reply)
Discussion started by: 2.5lt V8
1 Replies

4. Shell Programming and Scripting

tracing a ksh script within a ksh script

I normally trace a script with the ksh -x <script name> and redirect strderr to file. But if you have a script like the examble below...... vi hairy bear=`grep bear animals` if then ksh more_animals fi If I ksh -x hairy it won't trace "more_animals" unless I put a -x in it. Is... (1 Reply)
Discussion started by: shorty
1 Replies

5. Shell Programming and Scripting

import var and function from ksh script to another ksh script

Ih all, i have multiples ksh scripts for crontab's unix jobs they all have same variables declarations and some similar functions i would have a only single script file to declare my variables, like: var1= "aaa" var2= "bbb" var3= "ccc" ... function ab { ...} function bc { ... }... (2 Replies)
Discussion started by: wolfhurt
2 Replies

6. Shell Programming and Scripting

passing a variables value from the called script to calling script using ksh

How do i get the value of the variable from the called script(script2) to the calling script(script1) in ksh ? I've given portion of the script here to explain the problem. Portion of Script 1 ============= ----- ----- tmp=`a.ksh p1 p2 p3` if then # error processing fi -----... (10 Replies)
Discussion started by: rajarkumar
10 Replies

7. Shell Programming and Scripting

KSH script to run other ksh scripts and output it to a file and/or email

Hi I am new to this Scripting process and would like to know How can i write a ksh script that will call other ksh scripts and write the output to a file and/or email. For example ------- Script ABC ------- a.ksh b.ksh c.ksh I need to call all three scripts execute them and... (2 Replies)
Discussion started by: pacifican
2 Replies

8. Shell Programming and Scripting

Help Create dynamic ksh script from a script

I am currently running 2 scripts to gather data for a 3rd script and would like to combine the 2 scripts into one. Having issues with the final output format. Note cannot post URL so replaced the http stuff with (name) in the examples All scripts contain #!/bin/ksh OS = Red Hat Enterprise... (0 Replies)
Discussion started by: pcpinkerton
0 Replies

9. Shell Programming and Scripting

Deploy ksh script to file from other script

Hi all, I need to deploy two scripts on around ~100 machines and have only OPSware. Opsware have the option to execute a script, so I am trying to write a script which dose cat > script.ksh <<EOF script to be deployed EOF However the script between the two EOFs gets also executed which... (0 Replies)
Discussion started by: click
0 Replies

10. Shell Programming and Scripting

Script to replace lines in ksh Script

Hi All, I am novice to Unix and I need your expert advice for the below task. There is a KSH script file in which I need to replace few line as per the below expectations. So my file look like as # Host Setup Command: Line 1 Line 2 Line 3 Line 4 Line Any... (6 Replies)
Discussion started by: rupid0609
6 Replies
SUPER(3pm)						User Contributed Perl Documentation						SUPER(3pm)

NAME
SUPER - control superclass method dispatch SYNOPSIS
Find the parent method that would run if this weren't here: sub my_method { my $self = shift; my $super = $self->super('my_method'); # Who's your daddy? if ($want_to_deal_with_this) { # ... } else { $super->($self, @_) } } Or Ruby-style: sub my_method { my $self = shift; if ($want_to_deal_with_this) { # ... } else { super; } } Or call the super method manually, with respect to inheritance, and passing different arguments: sub my_method { my $self = shift; # parent handles args backwardly $self->SUPER( reverse @_ ); } DESCRIPTION
When subclassing a class, you occasionally want to dispatch control to the superclass -- at least conditionally and temporarily. The Perl syntax for calling your superclass is ugly and unwieldy: $self->SUPER::method(@_); especially when compared to its Ruby equivalent: super; It's even worse in that the normal Perl redispatch mechanism only dispatches to the parent of the class containing the method at compile time. That doesn't work very well for mixins and roles. This module provides nicer equivalents, along with the universal method "super" to determine a class' own superclass. This allows you to do things such as: goto &{$_[0]->super('my_method')}; if you don't like wasting precious stack frames. (Because "super" returns a coderef, much like "can" in UNIVERSAL, this doesn't break "use strict 'refs'".) If you are using roles or mixins or otherwise pulling in methods from other packages that need to dispatch to their super methods, or if you want to pass different arguments to the super method, use the "SUPER()" method: $self->SUPER( qw( other arguments here ) ); FUNCTIONS and METHODS This module provides the following functions and methods: "super()" This function calls the super method of the currently-executing method, no matter where the super method is in the hierarchy. This takes no arguments; it passes the same arguments passed to the currently-executing method. The module exports this function by default. Note: you must have the appropriate "package" declaration in place for this to work. That is, you must have compiled the method in which you use this function in the package from which you want to use it. Them's the breaks with Perl 5. "find_parent( $class, $method, $prune, $invocant )" Attempts to find a parent implementation of $method starting with $class. If you pass $prune, it will not ignore the method found in that package, if it exists there. Pass $invocant if the object itself might have a different idea of its parents. The module does not export this function by default. Call it directly. "get_all_parents( $invocant, $class )" Returns all of the parents for the $invocant, if it supports the "__get_parents()" method or the contents of @ISA for $class. You probably oughtn't call this on your own. "SUPER()" Calls the super method of the currently-executing method. You can pass arguments. This is a method. NOTES
Beware: if you do weird things with code generation, be sure to name your anonymous subroutines. See Perl Hacks #57. Using "super" doesn't let you pass alternate arguments to your superclass's method. If you want to pass different arguments, use "SUPER" instead. D'oh. This module does a small amount of Deep Magic to find the arguments of method calling "super()" itself. This may confuse tools such as "Devel::Cover". In your own code, if you do complicated things with proxy objects and the like, define "__get_parents()" to return a list of all parents of the object to which you really want to dispatch. AUTHOR
Created by Simon Cozens, "simon@cpan.org". Copyright (c) 2003 Simon Cozens. Maintained by chromatic, <chromatic at wgz dot org> after version 1.01. Copyright (c) 2004-2009 chromatic. Thanks to Joshua ben Jore for bug reports and suggestions. LICENSE
You may use and distribute this silly little module under the same terms as Perl itself. perl v5.10.0 2009-09-13 SUPER(3pm)
All times are GMT -4. The time now is 08:35 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy