1
vote
5answers
39 views
Korn Shell - Test with variable that may be not set
I have the following code in KornShell
FAILURE=1
SUCCESS=0
isNumeric(){
if [ -n "$1" ]; then
case $1 in
*[!0-9]* | "") return $FAILURE;
* ) return …
1
vote
4answers
134 views
ksh: Iterate through a range
How can I iterate through a simple range of ints using a for loop in ksh?
For example, my script currently does this...
for i in 1 2 3 4 5 6 7
do
#stuff
done
...but I'd like to extend the range …
0
votes
1answer
73 views
Make Arrow and delete keys work in Korn shell Command line
Hi all,
I am new to unix and am using sun solaris (v10 i think) . I have my shell set as korn shell . i am wondering how to make the arrow keys and delete key work in the command line . I have done …
0
votes
3answers
57 views
How to format the date in korn shell script to DD-MON-YYYY?
How do I format a date in a korn shell script to DD-MON-YYYY?
I have tried the following:
date '+%d-%h-%Y'
It returns 04-Nov-2009 I need for the Nov to be NOV (all caps). Can this be done with …
0
votes
2answers
149 views
Is there any difference between using typeset in ksh to simply setting a variable?
Are the following 2 lines completely equivalent? If not what's the difference? I've seen plently of shellscripts utilize number 1 and was just wondering what it gives you compared with number 2.
…
2
votes
3answers
112 views
Is there a bash shortcut for traversing similar directory structures?
The Korn shell used to have a very useful option to cd for traversing similar directory structures e.g. given the following directorys
/home/sweet/dev/projects/trunk/projecta/app/models
…
2
votes
4answers
612 views
Can I get the absolute path to the current script in Korn Shell?
Is it possible to find out the full path to the script that is currently executing in Korn shell?
i.e. if my script is in /opt/scripts/myscript.ksh, can I programmatically inside that script discover …
0
votes
2answers
135 views
korn shell script to get the most recent file for a given day
HI,
I have a list of files from the last 7 days. From this list, if there are multiple files on a certain day, i need to get the latest for that day using korn shell script.
Please help!
0
votes
2answers
260 views
korn Shell script to get files between two dates
Hi,
Need to get the files between two given dates. If there are multiple files on one day get the latest of the files for that day.
0
votes
2answers
83 views
How to capture your username on Box A after you have ssh’d onto Box B?
Hi,
Maybe not the best worded question, but hopefully it's a straightforward problem.
The scenario is ssh'ing from a personal account on box A to a generic account on box B. The script running on …
2
votes
6answers
1k views
How to mkdir only if a dir does not already exist?
I am writing a script to run under the korn shell on AIX. I'd like to use the mkdir command to create a directory. But the directory may already exist, in which case I don't want to do anything. So I …
3
votes
5answers
798 views
Korn shell wraparound
Okay, I'm sure this is simple but it is driving me nuts. I recently went to work on a program where I've had to step back in time a bit and use Redhat 9. When I'm typing on the command line from a …
0
votes
0answers
187 views
Extract history from Korn shell
I am not happy about the history file in binary format of the Korn shell.
I like to "collect" some of my command lines, many of them actually, and for a long time. I'm talking about years. That …
1
vote
5answers
584 views
How can I check for a file size and add that result in an Excel spreadsheet in Perl?
Currently I monitoring a particular file with a simple shell one-liner:
filesize=$(ls -lah somefile | awk '{print $5}')
I'm aware that Perl has some nice modules to deal with Excel files so the …
0
votes
4answers
209 views
Awk appears to disconnect my DB2 session when piping
Hello.
I'm attempting to run the following command in Korn Shell (ksh):
set -A INDEXES `db2 "describe indexes for table ${TABSCHEMA}.${TABNAME} show detail" | awk '{print $1"."$2}'`
What I'm …
