0
votes
2answers
58 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 ...
1
vote
1answer
21 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
2answers
62 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
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
74 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
68 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 ...
-1
votes
2answers
38 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
76 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 ...
1
vote
3answers
27 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
58 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
4answers
29 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?
0
votes
1answer
39 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
58 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
60 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 ...
4
votes
1answer
61 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 ...
-2
votes
1answer
77 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
vote
4answers
50 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
94 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
51 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 ...
-2
votes
2answers
88 views

How do I just grep a column in my ksh script?

The following is my code: #!/bin/ksh -p NAME=$1 echo $NAME likes to drink: grep $NAME ~/practice/database/likes echo total number of beers $NAME likes to drink: grep $NAME ~/practice/database/likes | ...
0
votes
4answers
222 views

SED or AWK command to print only lines that are between two set patterns

I need a command / script to get the CVS merge conflicts. Basically, I need a SED or AWK command to print only lines that are between the two set patterns Example: Pattern1="RCS file:" ...
0
votes
2answers
130 views

then not expected error on k shell script

I wrote a simple k shell program, but i seeing the following error " 0403-057 Syntax error at line 11 : `then' is not expected." The code is #!/usr/bin/ksh function check_rm { number=$# ...
0
votes
3answers
121 views

Writing command response to an output file in Korn shell script

I want to capture the output of the following ./symmir executable in an output file. The executable first asks a question if I want to proceed. As you can see in the following code, I answer "Y" to ...
0
votes
3answers
73 views

find all users who has over N process and echo them in shell

I'm writing script is ksh. Need to find all users who has over N process and echo them in shell. N reads from ksh. I know what I should use ps -elf but how parse it, find users with >N process and ...
2
votes
1answer
70 views

array length in ksh always return 1 and why array is not lines

I need to echo information of a process for a UID in ksh: #!/bin/ksh read userid arr=$(ps -elf | nawk -v pattern=${userid} '{if ($3==pattern) print}') arrlen=${#arr[@]} echo $arrlen for f in ...
1
vote
0answers
75 views

Shell / KSH: Scanning specific files in a remote directory

Apologies if this has already been answered; I've searched for some pointers on log scanning with shell, but most results were on how to handle specific searches in a single file. The problem: I need ...
1
vote
2answers
82 views

Automatically recreate a lot of different links to renamed directories or files

I need to rename a lot of directories and files in my Linux/Solaris machines. There are many links that pointed to those directories/files. So first I create the following script in order to find ...
0
votes
2answers
113 views

variable in shell script newcatalog=`'$newcatalog' | sed 's/^-/\.\/-/'`

I'm writing shell script: read newcatalog newcatalog=`'print -- $newcatalog | sed 's/^-/\.\/-/'` cd "$newcatalog" newcatalog this is the name of new catalog. Catalog name should support * ? and any ...
1
vote
1answer
170 views

ksh: How to pass arguments containing white space between scripts?

I have two scripts (one ksh and other Perl) and one calls the other. I have to handle a scenario when someone accidentally enters a white space in file name and report it as an error (only when the ...
0
votes
3answers
169 views

perl + Replace IP address only if octet is VALID IP [duplicate]

The target of the following perl one liner code is to replace the first three octets ( in case the four octet is digit/number - xxx.xxx.xxx.digit ) remark - I use linux and solaris machines The ...
0
votes
4answers
321 views

How to execute awk command in shell script

I have an awk command that extracts the 16th column from 3rd line in a csv file and prints the first 4 characters. awk -F"," 'NR==3{print $16}' sample.csv|sed -e 's/^[ \t]*//'|awk '{print ...
1
vote
1answer
106 views

difference-redirecting to bit bucket(aka /dev/null) vs closing the file descriptor

Is there any difference between the below two commands? ls -l some_non_existing_file 2>/dev/null and ls -l some_non_existing_file 2>&- Both seems to work but I have seen only the first ...
2
votes
2answers
85 views

linux ksh how to remove all directories except the latest some directories

I am using Linux ksh to remove some old directories that I don't want. What I use is this: #! /bin/ksh OLD=/opt/backup DIR_PREFIX="active" DIRS=$(ls ${OLD} -t | grep ${DIR_PREFIX}) ...
0
votes
2answers
134 views

How to expand shell variables in a text file?

Consider a ASCII text file (lets say it contains code of a non-shell scripting language): Text_File.msh: spool on to '$LOG_FILE_PATH/logfile.log'; login 'username' 'password'; .... Now if this ...
0
votes
3answers
68 views

How to interate based on words in text? (Shell Scripting)

I have a file currently in the form location1 attr attr ... attr location2 attr attr ... attr ... locationn attr atrr ... attr What I want to do is go through each line, grab the location (first ...
0
votes
2answers
469 views

Check for Specific Username Password Expire Script

I never posted before, but I search here quite often and you all are usually extremely helpful. I have had a issue with User Passwords expiring, and since I dont check /var/cron/log on the regular I ...
0
votes
2answers
139 views

What is the maximum number of characters that the ksh variable accepts?

I am trying to load and parse a really large text file. Although the loading is not a problem, but there are particular lines that have 2908778 characters on a single line. This is causing an ...
-1
votes
1answer
140 views

how to search a particular charachter in a string in korn shell scripting?

My script receives command line arguments as input. My task is to check if those arguments contains abc in it and print only those arguments which contain abc in it. For Example:- ./tree.sh rabc try ...
0
votes
1answer
424 views

Error in using if condition in Unix shell script

I have written the following shell script: #!/bin/ksh main() { echo 'Checking if process is running...' if [ [ps -ef|grep "Djava.security.auth.login.config"|grep -v grep|wc -l] != 0 ]; then ...
1
vote
0answers
111 views

Incorrect exit status of wrapper script in KSH

We have a wrapper script for Teradata TPT utility. The wrapper script is pretty straightforward but the problem is that the exit status of the wrapper is not the same as that of the utility. In many ...
0
votes
1answer
66 views

for loop not working as expected with variable in ksh

The following piece of code is printing /home/user/dir/*@(${host}|${hostname})* instead of printing each of the files in the directory. #!/usr/bin/ksh host=foo hostname=bar ...
-2
votes
1answer
142 views

Unix script - String Validation

I'm very new to Unix scripting (.ksh). I have to implement a functionality to check whether my argument says "welcome" present in an string array e.g. {"welcome","test","exit"} The logic is similar ...
3
votes
2answers
262 views

Perl one line liner + match IP address

I am trying to build Perl one line liner that match exactly IP address from file , and print the matched IP if IP not matched then it will not print the IP address . REMARK - on the left/right side ...
0
votes
1answer
93 views

Error when subtracting two negative numbers in ksh: “assignment requires lvalue”

I am trying to debug someone else's script: The code line is: y=$((${oldvalue[$x]}-${newvalue[$x]})) y gets calculated fine as long as both sides are positive numbers. However, I have a production ...
0
votes
3answers
70 views

Sed and escaping single quote

I'm having a problem with sed and single quotes I have a string like this : -cmd af -i 3 -a I want to change this string to -cmd 'af -i 3 -a' Now I'm using this : the string is stored in ...
0
votes
1answer
140 views

comparing two array in ksh script

Code snippet is here: #!/usr/bin/ksh diff(){ awk 'BEGIN {RS=ORS= } {NR==FNR?a[$0]++:a[$0]--} END{for(k in a)if(a[k])print k}' < (echo -n "${!1}") < ...
0
votes
3answers
114 views

Using tail in a subshell in conjunction with while/break does not exit the loop

I have been facing a very peculiar issue with shell scripts. Here is the scenario Script1 (spawns in background)--> Script2 Script2 has the following code function check_log() { logfile=$1 ...
0
votes
2answers
118 views

Difference in behaviour while Sourcing a Script and Executing it on a Korn Shell

The Only difference in Sourcing a Script and Executing it, I was aware of, is in the later case, the parent environment remains unaffected. Consider a sample Script SETUP_DIR=`dirname $0` echo ...
2
votes
8answers
2k views

changing to parent directory in unix

in general we use cd .. for going to the parent directory cd ../../ to go to the parents parent directory. and cd ../../../../../ for 5th parent directory. is there any simplified way of doing ...

1 2 3 4 5 7