Search Results

Search: Posts Made By: zilla30066
2,074
Posted By zilla30066
set -x
Used for debugging can be useful in a loop if you put a read stty in the loop it waits for input in each iteration and you can look at your variables.
3,590
Posted By zilla30066
space
Put a space between the last character and the close bracket ]
3,590
Posted By zilla30066
try this
#!/usr/bin/ksh

if [ -f /users/xyz/*.tar.gz ];
then
<do something
fi
2,730
Posted By zilla30066
figured it out
Figured it out I ran the process in the background then my cgi script started looping like a wanted it to and dumping out the status of the children to the web page.

Thanks guys.
2,730
Posted By zilla30066
cgi script question
Hi All,

I have a web page that is a cgi script running in the cgi-bin and the script calls informatica via the command line. The problem I have is that if there is an error in the informatica...
1,581
Posted By zilla30066
A Doozy of a problem for me
I have a report I need to format into a nice looking fixed length for each column of output

The report looks like this
1. First Query Title

First Query syntax (select * from tablea)
column1a ...
6,465
Posted By zilla30066
Thanks for this help. I was able to use this to...
Thanks for this help.
I was able to use this to do exactly what I needed.

Thanks Again
8,267
Posted By zilla30066
#!/usr/bin/ksh var="" ...
#!/usr/bin/ksh
var=""
file="/dir/subdir/filename.ext"

var=`$ORACLE_HOME/bin/sqlplus -s username/password@db<<!
set pagesize 0 feedback off verify off heading off trimout on echo off
WHENEVER...
6,465
Posted By zilla30066
Help reading an input file in KSH
First I' d like to say you guys are awesome. :)

I have a word document that I cut and paste into Textpad and it removed all the fancy formatting which is fine with me. I WinScp'd it to the box and...
2,933
Posted By zilla30066
thanks I'll give it a try
thanks I'll give it a try
2,933
Posted By zilla30066
screen display help
Hello All,

I have a file that is formatted like this
1234556
1234567
1234588
1123888
1999999
1010101
1919191
1919191....

for a total of 26000 + lines
how do I get a script to read...
8,844
Posted By zilla30066
Thanks You da man :) works now
Thanks You da man :) works now
8,844
Posted By zilla30066
I can't declare an array in my korn shell script
I have a script that contains

#!/usr/bin/ksh
set -A X 'hallo' 'world'
echo ${X[0]}
echo ${X[1]}

when I execute it I get an errror message
sh ./test.ksh
./test.ksh: -A: bad option(s)

but...
Showing results 1 to 13 of 13

 
All times are GMT -4. The time now is 11:20 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy