Unix scripting doubts


 
Thread Tools Search this Thread
Operating Systems Solaris Unix scripting doubts
# 8  
Old 05-07-2010
An answer to the question in your other post (https://www.unix.com/shell-programmin...#post302419418) that has been closed:

Code:
oprvdw   vrc002093j.ksh
oprvdw   vrc002092j.ksh
oprvrc    vrc045016j.ksh
oprvrc    vrc055141j.ksh
svemietl  bdw0231185.sh
svemietl  bdw0231145.sh

Code:
awk 'a == $1 {print $2; next} {a=$1; print $1 ":" RS $2}' infile
oprvdw:
vrc002093j.ksh
vrc002092j.ksh
oprvrc:
vrc045016j.ksh
vrc055141j.ksh
svemietl:
bdw0231185.sh
bdw0231145.sh

# 9  
Old 05-10-2010
how to check two files exist and theare are not empty

Hi, i hav two files x1.xls and x2.xls. how to write an IF loop to check these two files exist and their size is not empty
# 10  
Old 05-10-2010
Code:
if [ -s x1.xls -a -s x2.xls ]
then
    ....
fi

# 11  
Old 05-10-2010
one more question,
in my script, i wrote a line to create a file like this: ls -lrt vrc* > x.xls
but while executing, it showing o/p as /usr/bin/ls: arg list too long
and not showing required o/p.

soplz suggest me In this case, i want to print a msg to screen and want to come out of the loop
OR
suggest me how can i create that file without showing this error
# 12  
Old 05-10-2010
You can try
Code:
ls -ltr | awk '{ if ($NF ~ /^vrc/) print; }'

# 13  
Old 05-10-2010
in my script, i wrote a line like this : ls -lrt tpa* > x.xls
while executing the script, it showing o/p as tpa*: No such file or directory

instead of server showing this msg, i want my scritpt to display as : No jobs available which starts with tpa*
so how can i change my script
# 14  
Old 05-10-2010
Code:
ls -lrt tpa* > x.xls 2>/dev/null
if [ ! -s x.xls ]
then
    echo No jobs available which starts with tpa*
fi

The redirection of stderr ( 2>/dev/null ) suppresses the error message (no such file or directory). After that you check, if the file is not at least 1 byte of size and print an error message if so.
This User Gave Thanks to hergp For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Few doubts on Linux scripting

1) I have to create 3 scripts which create different output files. Script one creates datafiles, script2 creates control files and script3 creates flg files. The business wants the same timestamp to be attached to all the files created by these scripts. Script1- Create data files - Data files... (2 Replies)
Discussion started by: Maya_Pillai
2 Replies

2. Shell Programming and Scripting

shell scripting doubts

Hello All, I am working in a reputed software firm,currently working on testing platform (manual and automation).But I am very much intersted in unix and shell scripting,I feel that I am good at beginner level of shell scripting,still I want to practise shell scripting to become excel in it.I... (1 Reply)
Discussion started by: maheshglm
1 Replies

3. UNIX for Dummies Questions & Answers

Unix doubts

Hi All, 1. how and who calls .profile when you login 2. what is PPID and what means by PPID = 0 Thanks in Advance (2 Replies)
Discussion started by: ravi.sadani19
2 Replies

4. UNIX for Dummies Questions & Answers

Basic doubts related to Unix

Hi all, I have few question related to Unix environment and commands : 1. what is .chrc file contain and if it is not present then what happens. 2. what is .login file contain,in which dir it is present and what all other uses are their for this file 3. how and who calls .profile when you... (2 Replies)
Discussion started by: ravi.sadani19
2 Replies

5. UNIX for Dummies Questions & Answers

unix doubts

Write unix command to list or view auto links (0 Replies)
Discussion started by: ashishshah.engg
0 Replies

6. Forum Support Area for Unregistered Users & Account Problems

How to post a new thread (Regarding Unix related doubts) in Unix Forums

How to post a new thread (Regarding Unix related doubts) in Unix Forums. I registered my id but I am unable to post my Questions to Forum. Thanks & Regards, indusri (1 Reply)
Discussion started by: indusri
1 Replies

7. UNIX for Dummies Questions & Answers

Unix doubts

Hello All, I am very new to UNIX. Please help me to find answers of below questions. 1.A script is saved with name ls. When we execute the script what it will execute? a) Will execute ls command b) Will execute the script c) Will execute script or command depends on the path ... (2 Replies)
Discussion started by: aswathy
2 Replies

8. Programming

Doubts About C Compiler In Unix/linux

As all of you know whenever a program "say a.c" is complied in linux using the gcc or the cc compiler..it shows the list of errors ( if the program contains any).. i want to modify the compier script so as to list the no of errors only and not the description about the error..like" parse error " ... (1 Reply)
Discussion started by: vrs
1 Replies

9. Solaris

Unix Administration doubts ********

Hi, Can anyone tell me the correct answers for these: 1. You have 4 instances running on the same UNIX box. How can you determine which shared memory and semaphores are associated with which instance? 2. How do you increase the OS limitation for open files (LINUX and/or Solaris)? Thanks:p (1 Reply)
Discussion started by: dreams5617
1 Replies

10. UNIX for Advanced & Expert Users

unix & C doubts

Hi, I have a few doubt here : 1) I want to run a 3 different 'C' programs in same session simulteneously (parelelly). if I make a shell, it is running one after another, I mean it shout run in 3 processors. 2) In 'C' program, how can I assing a value of the unix commant cat a.txt|wc... (1 Reply)
Discussion started by: krishna
1 Replies
Login or Register to Ask a Question