Sponsored Content
Full Discussion: how to goto in ksh
Top Forums Shell Programming and Scripting how to goto in ksh Post 48621 by Perderabo on Thursday 11th of March 2004 02:22:50 PM
Old 03-11-2004
Try something like:
Code:
[[ -f $LOGFILE ]] && read lastjob <$LOGFILE
for xjob in job1 job2 job3 job4 job5 job6 ; do
       if [[ -z $lastjob || $lastjob = $xjob ]] ; then
            ./$xjob || {echo $xjob > $LOGFILE ; exit 1 ; }
       fi
done

 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

GOTO LOOP in KORNE SHELL

All Please help to provide "goto" functionality in KORN shell script. ex: 1: Command Process some command if check some variable true goto 1 else process some other Please help to implement this example in korne... (1 Reply)
Discussion started by: DeepakXavier
1 Replies

2. Shell Programming and Scripting

Use of GOTO statement in scripts

Hey Guys.. I just want to know how to use Goto statement in shell scripts. I know the basic use of statement. Goto Label The above statement will search for some label which must be defined in the script itself as: label: I tried these combinations but I didn't work out for me and I'm... (7 Replies)
Discussion started by: vikasduhan
7 Replies

3. Shell Programming and Scripting

goto statement

I have a test script for using goto statement but its not working. please help i tried both in linux and hp-ux it's not working please help #! /bin/ksh t=`ps -ef|grep ti.sh|grep -v grep` if ; then goto start else goto stop fi start: echo "start" stop: echo "stop" (5 Replies)
Discussion started by: Krrishv
5 Replies

4. UNIX for Dummies Questions & Answers

Stuck after typing goto

uname -a returns: SMP Tue May 17 17:52:23 EDT 2005 i686 athlon i386 GNU/Linux I have many aliases beginning with "goto" so... if I type goto and then hit return (oops) A goto prompt pops up and I cant exit from it(I tried MANY key seqs) The only way to exit is to kill the term window... (2 Replies)
Discussion started by: rairey
2 Replies

5. Solaris

Goto last visted directory

Dear All, Can any one pls let me the command for how to goback to previous visited directory from the current working directory in SunOS ? In case of HP-UX; the same can be resolved through "cd -" command. Thanks in advance! Prasanth Babu. (6 Replies)
Discussion started by: prasanth_babu
6 Replies

6. Shell Programming and Scripting

Using A Goto Label?

Im trying to do something like this but I cant find any documentation. read X if then goto ThisLine fi OTHER CODE OTHER CODE Label: ThisLine echo "You entered 1" (5 Replies)
Discussion started by: Grizzly
5 Replies

7. Shell Programming and Scripting

Alternative for goto

#!/bin/sh label: echo sql poll v=`sqlplus -s <<! HR/HR set pages 0 echo off feed off select distinct status from emp where id=5; ! ` echo $v; echo it comes here after false if then echo if condition true sqlplus -l scott/tiger <<EOF select * from department; EXIT (2 Replies)
Discussion started by: kumaar1986
2 Replies

8. Shell Programming and Scripting

Goto - UNIX v6 Manual Questions

Hey :) I am trying to understand the command goto. I have some questions regarding the goto manual. 1.What does the underlined part mean? I'm not allowed to type goto in the shell? But if goto is written into a file everything is okay? 2.So if a part of my file looks like this ... goto... (8 Replies)
Discussion started by: orbit
8 Replies

9. Ubuntu

Use of goto keyword in kernel programming

I have found many source files in the kernel using goto keyword instead of just doing the actual thing. For example: if(blah) goto x; -- -- -- -- -- x: return blah-blah Is there any specific reason for writing the code like this? The first thought that came to my mind is minimizing... (0 Replies)
Discussion started by: BHASKAR JUPUDI
0 Replies

10. Shell Programming and Scripting

A dash to GOTO or a dash from GOTO, that is the question...

Well, guys I saw a question about GOTO for Python. So this gave me the inspiration to attempt a GOTO function for 'dash', (bash and ksh too). Machine: MBP OSX 10.14.3, default bash terminal, calling '#!/usr/local/bin/dash'... This is purely a fun project to see if it is possible in PURE... (3 Replies)
Discussion started by: wisecracker
3 Replies
XMLMERGE(1)															       XMLMERGE(1)

NAME
xmlmerge - Command line tool for merging XML snippets from multiple files SYNOPSIS
xmlmerge [options] <input file(s)> DESCRIPTION
The xmlmerge command collects XML snippets scattered to multiple files and merges them into one big XML tree. This tool is used by the build process of AqBanking to merge HBCI segment definitions from several files into one big XML file. OPTIONS
--compact Try to keep the merged XML data compact. --header Add a XML header to the merged XML data. --help, -h Output a short usage hint. --logfile LOGFILE Write log messages to the file LOGFILE. You need to select the logging type "logfile" for this option having any impact. See also option "--logtype" for more information. --loglevel LOGLEVEL Select the desired log level. Valid values are emergency, alert, critical, error, warning, notice, info, debug and verbous. --logtype LOGTYPE Select the desired logging type. Valid values are console, file and syslog. -o OUTFILE Write the resulting XML tree to the file OUTFILE. If this option is omitted the result is written to the standard output. -v enable verbose output. --version -V: Output the version of the xmlmerge tool. BUGS
There are now known bugs at the time of writing this manual page. COPYING
Copyright (C) Martin PreuB. Free use of this software is granted under the terms of the Lesser GNU Public License (LGPL). The manpage was composed by Micha Lenk and converted by the nifty tool AsciiDoc into a manpage. AUTHOR
Micha Lenk <micha@lenk.info> Author. 05/10/2012 XMLMERGE(1)
All times are GMT -4. The time now is 08:13 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy