0
votes
1answer
20 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 ...
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
3answers
281 views

grep + match exactly IP address with Regular Expression

my target is to match exactly IP address with three octes , while the four IP octet must be valid octet - between <0 to 255> For example I have the following IP's in file $ more file ...
0
votes
2answers
136 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 ...
1
vote
1answer
242 views

Environment variables to be used across multiple korn (ksh93) shell scripts (getter-setter)

I have a set of scripts that share some environment variables that are used as status flags. Consider: ./script1.sh; ./script2.sh; # I execute 2 scripts within the same shell. Now each of these ...
2
votes
1answer
167 views

Check if the current time falls within defined time range on UNIX

Consider the below code snippet: #!/bin/ksh rangeStartTime_hr=13 rangeStartTime_min=56 rangeEndTime_hr=15 rangeEndTime_min=05 getCurrentMinute() { return `date +%M | sed -e 's/0*//'`; # ...
0
votes
1answer
37 views

Include the hour in the filename for a log file

I have a ksh script where I'm creating a logFileName as follows: logFileName=result_`date +%y%m%d_%k%M%S`.log This results in a correct filename most of the time like the following: ...
0
votes
1answer
91 views

Same piped call to isql works on Solaris but not on RHEL

Background: I need to port a ksh script from SunOS 5.10 to RHEL 5.8. It makes a call to isql to retrieve some data and, quite contrary to the intended application of final endpoint client utilities ...
0
votes
1answer
75 views

Equivalent typeset -n options for HP/SOL

This is a simplified portion from a much larger script. I am using i as a conter to loop through a set of strings. I have multiple strings "word1 word2 word3 word4 .....wordx" that I am looping ...
0
votes
0answers
158 views

ksh : nohup connects with root user

I'm connected to a Solaris 9 machine using a user1 account. bash-2.05$ /usr/ucb/whoami user1 When i run any command using nohup, it executes with root privileges: bash-2.05$ nohup whoami & [1] ...
-1
votes
2answers
157 views

Strange script behaviour when shebang references different shell

I've recently switched to the ksh93 shell. I did this by adding the following two lines to my .profile file export SHELL=/usr/local/bin/ksh93 exec $SHELL Since I did that some simple scripts have ...
0
votes
1answer
368 views

Find one string in a file and replace its match in another file

I'm trying to replace a string in one file with its matched alias in another file. For example I want to match the first field in each line of File A and substitute it with what it equals in File B. ...
1
vote
1answer
823 views

Why does SunOS say it can't execute this Korn shell script? [closed]

I have a script in Server A that will run a script in ServerB. #!/bin/ksh/ ssh user@server "/path/script.sh" The script permissions are as follow: -rwxrwxrwx 1 user dba 75 ...
1
vote
1answer
5k views

Running .ksh Scripts from Solaris Korn Shell

I have developed a few .ksh scripts to run on Solaris. I run the scripts over Putty. On one server, I am able to run them as follows: $ script.ksh On the other, server, I need to run them as ...
1
vote
3answers
354 views

Find Difference in timestamps in seconds

I have 2 files with timestamps in the format of MMDDYYYY-HHMMSS. For eg. 04192012-000623 and 04192012-000854. I need to be able to find the difference between the 2 in seconds. Special cases to ...
0
votes
1answer
306 views

Splitting and appending with ksh and awk/nawk

I'm just having the darnedest time with this. Here is my nawk statement: nawk -F"\t" '{print substr($1,0,4)","substr($1,5,4)","substr($1,9,4)","$2","$3","$4","$5","$6}' filename In a nutshell, ...
0
votes
3answers
386 views

Eval for multiple command execution in ksh93, Solaris

I would like to execute two or more commands back to back . But these commands are stored in a variable in my script. For example, var="/usr/bin/ls ; pwd ; pooladm -d; pooladm -e" The problem ...
1
vote
1answer
278 views

Regarding nawk and system command

I am working on Solaris and working on a script that turns on any disabled service . Here is the output file: disabled 7:22:05 svc:/network/bla-bla:default online Jun_14 ...
1
vote
3answers
749 views

Generate 12 Digit HEX number in KSH

I need to generate 12 digit Hex numbers in KSH on Solaris Thanks
2
votes
1answer
2k views

ksh: assigning function output to an array

Why doesn't this work??? #!/bin/ksh # array testfunc() function testfunc { typeset -A env env=( one="motherload" ) print -r $env return 0 } testfunc # returns: ( ...
0
votes
2answers
1k views

How to handle non-printable ASCII character parameters?

I'm working on a project where we are dealing with importing/exporting data from database tables using ksh scripts and Perl scripts. We have an existing process to export data from a table to a file ...
0
votes
4answers
437 views

Simple Unix question - Configure

I'm using Solaris 10, ksh. Whenever I do a ./configure, I get the error "ksh: ./configure: not found" When I do a "where configure", nothing is found. How do I "install configure"?
3
votes
2answers
22k views

Korn Shell code to send attachments with mailx and uuencode?

I need to attach a file with mailx but at the moment I'm not having a lot of success. Here's my code: subject="Something happened" to="somebody@somewhere.com" body="Attachment Test" ...
2
votes
4answers
642 views

REDUX: How to overcome an incompatibility between the ksh on Linux vs. that installed on AIX/Solaris/HPUX?

I have uncovered another problem in the effort that we are making to port several hundreds of ksh scripts from AIX, Solaris and HPUX to Linux. See here for the previous problem. This code: ...
3
votes
8answers
8k views

How to overcome an incompatibility between the ksh on Linux vs. that installed on AIX/Solaris/HPUX?

I am involved in the process of porting a system containing several hundreds of ksh scripts from AIX, Solaris and HPUX to Linux. I have come across the following difference in the way ksh behaves on ...