0
votes
0answers
12 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 ...
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
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 ...
-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
2answers
40 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
3answers
61 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. ...
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
68 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
105 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
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 ...
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 ] ] ] ] && [ ! ...
4
votes
1answer
62 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
78 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 ...
-2
votes
2answers
96 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
2answers
143 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
74 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
73 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 ...
0
votes
1answer
50 views

Passing text to variable in KSH. Not Working

Hi I am struggling to solve this simple program. I am not able to pass the value from the text file to the variable. I am stuck at this: value=$( sed -n "${line}p" rpt1.txt|awk {$3} O/P: 1.sh[15]: ...
0
votes
4answers
79 views

I keep getting a 'while syntax' error on the output of the at job in unix and I have no idea why

#!/usr/dt/bin/dtksh while getopts w:m: option do case $option in w) wflag=1 wval="$OPTARG";; m) mflag=1 mval="$OPTARG";; ?) ...
-1
votes
1answer
359 views

Compare 2 csv files using shellscript and output the difference in a new csv file

(say) I have 2 csv files - file1.csv & file2.csv as mentioned below: **file1.csv** ID,version,cost 1000,1,30 2000,2,40 3000,3,50 4000,4,60 ...
0
votes
2answers
116 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 ...
2
votes
1answer
79 views

Find directories without files but with subfolders in Unix

I work with AIX 5.3 (ksh) and I'm looking for a way to find all folders that contain subfolders but without any files in it. I found a solution for searching empty directories (Find Directories With ...
1
vote
0answers
153 views

vncconfig unable to automatically work at startup

I am using vnc to connect to a linux system (redhat). Everytime I want to copy/paste things from windows to linux, I had to start vncconfig. I searched in internet on how to automatically start ...
0
votes
0answers
134 views

how to start vnc session through putty [closed]

generally if i want to start vnc, i used to goto putty at first, then type something like vncserver &, and then it gives some session number. then I open vnc and type the ip and :session number ...
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 ...
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 ...
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
149 views

Unix how to Compare 2 Unsorted files and print unique elements from each file

File1: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 File2: 9 10 11 12 21 22 23 24 1 2 3 4 17 18 19 20 I'm new to unix and I'm trying to obtain the unique rows from each file and output ...
0
votes
2answers
473 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
1answer
74 views

Is it possible to increase the maximum number of characters that ksh variable accepts?

This is a follow up question to What is the maximum number of characters that the ksh variable accepts? I checked my environment and it's allowing only #include <sys/limits.h> $ cpp ...
0
votes
2answers
103 views

typeset functions location

When I use the command typeset -f in ksh, a list of functions with their definition is displayed in stdout. I tried to search where those functions are defined, but I couldn't find any hint about ...
0
votes
2answers
144 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 ...
0
votes
1answer
428 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 ...
0
votes
1answer
94 views

How to use variable inside the array

I tried to use variable inside an array variable, but its not working as expected. CODE ENV2[0]=567 ENV1[0]=123 ENV1[1]=789 if [ $1 -eq 1 ] then name=ENV1 echo ...
0
votes
2answers
294 views

Unix HP-UX ksh recursive find and replace

I am trying to do a recursive find and replace in HP-UX and am missing something. What I have at the moment: find . -name "*.java" | xargs sed 's/foo/bar/g' know the problem is that it's not ...
2
votes
3answers
658 views

How do I correct the shell script to recognize the newline character on another server running Linux?

The new-line character is correctly recognized on server2 (Solaris) while it is taken as a backslashn character on server1 (Linux). How do I correct this..? While working on a simple script that ...
1
vote
5answers
52 views

Unix $# statement

I have found '$#' statement at the very beginning of utility ksh script but i was unable to found any info about what does '$#' means. Usage: if [[ $# -ne 1 ]];then LogMessage ...
-2
votes
1answer
144 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 ...
0
votes
1answer
95 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 ...
2
votes
3answers
389 views

Why does the following IF condition in ksh always evaluate to true?

Consider, below code works as expected: if [[ $SOME_VARIABLE = "TRUE" ]]; then echo "Only echoed when \$SOME_VARIABLE stores string \"TRUE\"." fi But when I remove the space surrounding the ...
0
votes
1answer
276 views

Write output to file with tabs/text added in ksh script

I am writing a ksh script that is logging to a file. I am redirecting the output of one of my commands (scp) to the same file, but I would like to add a tab at the start of those lines in the log ...
1
vote
1answer
243 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
169 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*//'`; # ...
1
vote
2answers
154 views

Remove one level of file extension from filename in shell script

I have a Bash script that loops through files and masks them. The files are gzipped and I need to gunzip them first before passing them as argument to a Python program as shown in script below. The ...
0
votes
2answers
322 views

Is it possible to invoke java web service from unix script?

Need to call java ws from unix ksh script. Is there any possibility? Thanks.
1
vote
1answer
113 views

Unix scripting: accessing required .ear file by filename mask

Task: need to unzip ear archive and access MANIFEST file to grep Build-version string value. Current script looks like this: MESSAGE=`unzip -o -d $APPBIN $APP/Engine_LIVE_1.1.0.1.ear ...
-1
votes
5answers
298 views

UNIX - Read file line by line, and remove end line character if line length = 170

I am trying to write a very simple shell script that will parse a file line by line, and if it finds that the length of the line is 170 characters, then I want it to remove than end of line character ...
-1
votes
2answers
41 views

Many to Many relationship in two files in unix [duplicate]

Possible Duplicate: Unix join on multiple fields on two files I need to get values from two files joining on fields 1 and 2 but the fields are not unique. I need to get all the values. For ...
0
votes
2answers
41 views

Program fails to move file

I'm trying to move file from one place to another directory...So my program will read Log_Deleter, use parameters given in each line to delete the file. When I execute the file, it seems like it runs ...
-1
votes
1answer
291 views

How to display list of processes sorted in reverse order for a bash, tsch, ksh shell in Unix

Was wondering if someone could help me with this... I want to display a list of running processes sorted in reverse order. The reverse order is to be based on process identification value - PID. I ...

1 2 3 4 5