The Korn Shell is an open source, POSIX-compatible shell language from AT&T based upon the original Bourne shell. Make sure you know whether your ksh is ksh93 or a clone.

learn more… | top users | synonyms

0
votes
0answers
23 views

Issues while using script (typescript) command with rksh restricted ksh

I have a scenario where I want to log every activity for a particular user. I have a script built around the script command which I invoke from the user's .profile. Now the requirement is that the ...
3
votes
3answers
137 views

Sort a Huge file

I want to sort a huge file of approx 20M rows: ascending on Team Name and then descending on highest score. so I can get the highest scorers per team. I want to be considerate of system's ...
0
votes
2answers
41 views

Remove duplicate records in history file of KSH

how can I set in ksh's .kshrc that duplicate records in history file will be deleted after every command? Thanks
0
votes
2answers
67 views

Unix shell - read array content in a for loop

this is my array: orlist="" orlist="T_TAB1 \n" orlist=$orlist"T_TAB2 \n" orlist=$orlist"T_TAB3 \n" orlist=$orlist"T_TAB4 \n" echo $orlist arrIdx=0 OLD_IFS=$IFS; IFS="\n" for IndixList in ...
0
votes
2answers
20 views

ksh - How insert a echo command in a variable

how can i insert this command line in a variable? : echo "abc:def" | awk -F':' '{print "field1: "$1 "\nfield2: "$2}' Thanks in advance
1
vote
1answer
22 views

Ways of reading through files

I'm writing a number of ksh scripts that cycle through a text file, processing it a line at a time. I tend to use while read X1 X2 X3 X4 do <process line> done < $INFILE but a ...
0
votes
1answer
25 views

Find command on Solaris 9 stopped working

I have seen this command working for a long time: find $dir -name $basename.[0-2][0-3][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-3][0-3][0-3] -exec rm -f {} \; Suddenly, it stopped working. I have ...
0
votes
2answers
68 views

Perl one liner + regular expression to match part of word

I write Perl one liner code in order to match IP address according to the following rule: match only the three first octets while the four octet must be valid 0-255 , additional to that number or "." ...
1
vote
3answers
40 views

KSH: using sed to return text to the right of a pattern

All, I'm trying to write a KSH script using sed (I'm very new to ksh) that pulls this SQL query from a log, but I want it to ignore the time stamp and the six characters/spaces that follow it. ...
2
votes
1answer
28 views

unable to insert date and hostname at the end of each line in korn script

I need to insert date and hostname to the end of the line in using ksh. The lines are output from the vmstat os that if a line starts with a number I need to add Date and Hostname to the end of the ...
1
vote
3answers
102 views

how to merge two files consistently line by line

I have two files (file1.txt & file2.txt ) , files are only examples . How to merge the two files , in order to create the file - merge_files.txt as example 3 I writing now ksh script , so merge ...
1
vote
1answer
34 views

KSH script won't email when nohup

I have a unique issue, i am in a unix environment and have a ksh script that ssh's to multiple sites, executes some code and then returns a response and then emails that response to an email address. ...
-1
votes
1answer
62 views

running a python script and processing the output in a shell script, how? [closed]

I'm new to shell scripting and don't know how to run a python file and process the output in a shell script. Could you please teach me how? #!/bin/ksh python foo.py #process the output.txt of the ...
0
votes
2answers
76 views

perl + add warn massage in perl one liner code

I have perl one liner code that rename the names of files/directories code: find /tmp -name "*$NAME_THAT_WE_WANT_TO_CHANGE*" -exec /tmp/rename.pl ...
0
votes
4answers
70 views

perl + match exactly IP ADDRESS but ignore spaces and TABS

the following perl liner code will match exactly the IP address perl -ne 'BEGIN{$ip=shift(@ARGV);} print if /^\Q$ip\E$/;' "$IP_ADDRESS" $FILE the problem is that we cant match by the ...
0
votes
1answer
35 views

[KSH]How create a html mail using shell script?

i need to use a ksh language, for create a script to forward an e-mail, with html content in the body, could you help me with a tutorial, or a example easy script? Thanks in advance.
0
votes
1answer
78 views

Korn shell - grouping conditions in an IF statement

I got the following snippet failing on ksh: var1="1" var2="2" if [ ( "$var1" != "" -o "$var2" != "") -a ( "$var1" = "$var2" -o " "$var1" = "x") ]; then echo "True" else echo "False" fi ...
-1
votes
2answers
43 views

how to use awk to print columns in a loop

I have a multiple-column text output from some command, and want to print the columns one at a time, like: #!/usr/bin/ksh typeset -i i=0 while [[ $i -lt 5 ]]; do <command 1> |awk '{print ...
0
votes
3answers
77 views

linux + how to delete only the matched number from line

How to delete only if number is full matched I wrote simple sed command ,the example below by sed , my target is to delete the number "1" from the list $NUMBERS what I need to add to my sed ...
0
votes
1answer
49 views

how to reuse stdout output without saving it to physical disk file

I have a for-loop, like the following: for inf from $filelist; do for ((i=0; i<imax; ++i)); do temp=`<command_1> $inf | <command_2>` eval set -A array -- $temp ... done ...
1
vote
3answers
28 views

* is being replaced by current folders file list

I am performing a grep on a file which is resulting in a single line output. This output has * as data in it. In the shell script I am trying to assign the value to a variable but * is being replaced ...
-2
votes
2answers
63 views

how to find the difference b/w to dates stored in a variable in shell script ( KSH shell )

In hp-ux as there is no GNU date available, i.e the -d and -s options of the date command are not available. How do I find the difference between two given dates in days (as we do in Solaris or bash ...
1
vote
1answer
24 views

read a line from a command out (stdout) to an array

I wrote such a script: #!/usr/bin/ksh93 while read -A value; do print -- "I am here" print -- ${value[@]} done < `<command>` My intention is to redirect the stdout output of the ...
0
votes
1answer
57 views

comparing lines with awk vs while read line

I have two files one with 17k lines and another one with 4k lines. I wanted to compare position 115 to position 125 with each line in the second file and if there is a match, write the entire line ...
1
vote
4answers
49 views

need to insert datetime in every row of vmstat output

I need to insert datetime in every vmstat line that has value. I can create a function like this: function insert_datetime { while read line do printf "$line" date '+ %m-%d-%Y %H:%M:%S' ...
0
votes
1answer
37 views

array assignment fails with a hyphen/dash in the data

I have a command, whose output is: "-1/2" "-B" "A" "C" But, when I want to assign the command's output to an array, like: temp=`command` eval set -A array $temp It told me: ./test.ksh[6]: -1/2: ...
0
votes
4answers
58 views

how to get the second column from command output with awk

My command's output is something like: 1540 "A B" 6 "C" 119 "D" The first column is always a number, followed by a space, then a double-quoted string. My purpose is to get the second column ...
0
votes
1answer
47 views

array assignment from command output in ksh

I wanted to assign the output of a command to an array, but came across the following problem: temp=`<some_command>` eval set -A array $temp print $temp print "***${array[0]},${array[1]}***" ...
-1
votes
0answers
30 views

How to end the command cd keys?

How to end the command cd keys? Ksh script, solaris. cd -- "$user_path" working just on bash function mov_dir { echo "ะ’ะฒะตะดะธั‚ะต ะฟัƒั‚ัŒ ะดะปั ะฟะตั€ะตั…ะพะดะฐ:" read user_path cd "$user_path"; }
1
vote
4answers
31 views

ksh - var = $var + 1 returns 1+1 string

My code: RETVAL1=-1 if [ $RETVAL1 -le 0 ] ; then RETVAL1=$RETVAL1+1 print "RETVAL1: $RETVAL1" fi And it prints RETVAL1: -1+1 Any idea how to repair it please?
1
vote
1answer
86 views

Different pipeline behavior between sh and ksh

I have isolated the problem to the below code snippet.. Notice below that null string gets assigned to LATEST_FILE_NAME='' when the script is run using ksh; but the script assigns the value to ...
1
vote
2answers
41 views

ClearCase command won't run in script

I am trying to automate ClearCase check-ins via a ksh script. There is a strange issue where the following command will not run while it's part of the automation script, but runs fine if I paste it ...
0
votes
1answer
41 views

What causes the exit status to change for the same command even when the output is identical?

In the below code, I am trying to check if the command within the if condition completed successfully and that the data was pushed into the target file temp.txt. Consider: #!/usr/bin/ksh A=4 B=1 ...
0
votes
3answers
62 views

how to get the last login time for all users in one line for different shells

I can make the following line work on ksh for user in $( awk -F: '{ print $1}' /etc/passwd); do last $user | head -1 ; done | tr -s "\n" |sort But I'd like to make it work on UNIX sh and UNIX csh. ...
0
votes
1answer
21 views

shell script not executing

I am trying to run a shell script on unix, but I am getting an error specifying it can't be executed. Command Unix> Abc.ksh ksh: Abc.ksh: cannot execute Also tried pcasvs17 > ./Abc.ksh ...
1
vote
1answer
53 views

Extended Regular Expression in UNIX

I don't mean that this question for UNIX only, but I work on Solaris, and I didn't try it on any other OS. I confused between the extended regular expression: first: [[ "str" == ?(str|STR) ]] ...
0
votes
1answer
57 views

array size limit in ksh

I have the following ksh script to run: temp=`<some_command>` eval set -A array $temp The variable temp contains the output from the command, with output as space separated strings. But on ...
0
votes
1answer
72 views

Checking if strings exist in a file (ksh)

not sure if the title helps but I'll try to be more specific here: I'm writing a little script for my machine. What I want, between other things is to check in my dmesg for disks, internals and ...
2
votes
3answers
108 views

How to create a 0 byte file in ksh.

This is probably obvious, but Google seems to have let me down. I need to create a zero byte file with arbitrary names on Unix (AIX, ksh). What is a good command that will do this. Something I can ...
-1
votes
3answers
112 views

Extract data from XML using ksh script

The first question I asked on this topic was closed because of lack of info. So asking this again with some more details added. I have to extract a value given in one tag from a xml file and I have ...
1
vote
1answer
61 views

unix shell: check file list in dir versus with list of files from a file

I am trying to write a sh script to check check that all files from list of files' extentions stored in a file are in a place in a particular dir. I am doing following: file names looks like ...
0
votes
2answers
44 views

Unix - condition within condition

I've been looking all over the place but couldn't find an answer. In ksh, how do you do something like this: while [ [ ! [ [ -n $var1 ] || [ [ -n $var2 ] && [ -n $var3 ] ] ] ] && [ ! ...
0
votes
2answers
51 views

How to replace a semicolon using sed (KSH)? [closed]

I want to use sed to replace a semicolon with other text in a string. The syntax should be something like (using generic variable names): sNewValue=$(echo "${sOldValue}" | sed 's/;/new text/g') ...
4
votes
1answer
63 views

Defining a shell script variable on the same line as sourcing another script

I am coming across lines in ksh scripts that declare a variable and source another shell script on the same line. For example: MYVARIABLE="abc" . ~core/script.sh Does this produce behaviour ...
3
votes
1answer
156 views

Collecting return code and stdout string from running SAS program in Linux korn shell script

Some developers and I are using korn shell to run SAS programs in a Linux environment. The script invokes a SAS command line and I wish to collect the stdout from the SAS execution (a string defined ...
-2
votes
1answer
79 views

Directory Clean Up Script [closed]

I have a task, I usually do manually, but with growing responsibilities I tend to forget to do this weekly, I want to write a script that automates this, but I cant seem to work it out in my head, I ...
-1
votes
1answer
30 views

Displaying files that are group or world writeable in a home directory

I'm trying to create a script that will display all the files that are group and world writeable in a home directory. Warning: The script will run an endless loop of file not found if you run it ...
1
vote
4answers
53 views

grep containing “-c” [closed]

I want to search for -c using grep For example: $>ls -al | grep '-c' But grep thinks it is an option. $>Usage: grep -hblcnsviw pattern file . . . How can I search -c as a string?
0
votes
1answer
97 views

Scoping anomalies with 'typeset -r' and 'readonly' keywords in ksh

First off, I am aware of the general scoping differences (dynamic/static) between bash and ksh when declaring functions using the function keyword vs. myfunction() and this post only discusses scoping ...
0
votes
2answers
54 views

korn shell: How to process a command in processing a command?

Hello folks! First a code I have now: for CLSGRPID in `${${`/usr/bin/snmpwalk \ -v 1 -c $COMM $HOST $OID.11.1.1.1`##*:}%\n} | xargs` ; do I'd like to first process /usr/bin/snmpwalk -v 1 -c ...

1 2 3 4 5 14