UNIX Shell Scripting (Solaris) for File Checking


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting UNIX Shell Scripting (Solaris) for File Checking
# 15  
Old 05-31-2016
OK, no bashisms. What happens if you create a dave.cfg file in your home directory containing
Code:
home/dave/banana        BANANA
home/dave/orange        ORANGE
home/dave/orange1       ORANGE
home/dave/orange2       ORANGE
home/dave/apple         APPLE
home/dave/apple1        APPLE
home/dave/apple2        APPLE

(are you sure, BTW, that those paths are relative and not absolute?) and run

Code:
while read DIR KW REST; do cd $DIR; echo invalid files in $DIR: $(ls > ../TMP; grep -l $KW * | grep -vf- ../TMP) >> ../de.log; cd ..;  done < dave.cfg;

? Are you happy with de.logs contents, at least for the invalid files?
This User Gave Thanks to RudiC For This Post:
# 16  
Old 06-01-2016
hi rudic,

Last edited by daveaztig14; 06-02-2016 at 02:35 AM..
# 17  
Old 06-01-2016
Please take one step at a time. What you presented in post#16 is NOT the directories from post#12. Use full absolute paths for a test, i.e. paths rooted at / and not using variables to be expanded.
Obviously your grep version behaves differently. There might be other versions installed on your node, like /usr/xpg4/bin/grep. Try with this one. If that fails, we need to look further.
This User Gave Thanks to RudiC For This Post:
# 18  
Old 06-02-2016
Hi rudic,

ok lets take it step by step..

im using unix solaros, kornshell.

for example i have a directory
Code:
home/dave/solaris/unix/samplefiles

the default files has 1 word in common and that is "UNIX". how can i display the fiesl without "UNIX" word in it using grep command?

thanks a lot for all the help
# 19  
Old 06-02-2016
Hello daveaztig14,

You requirement is not clear but if you want to read/print the file's content on standard output in a specific directory then following may help you in same.
Code:
for file in home/solaris/unix/samplefiles/*
do
      grep -v "UNIX" $file
done

If your requirements are different from above code then please do let us know your requirement with complete details with sample Inputs and expected outputs.

Thanks,
R. Singh
This User Gave Thanks to RavinderSingh13 For This Post:
# 20  
Old 06-02-2016
Hi R.Singh,

i used your code but it doest results to anything.

forexample in home/solaris/unix/samplefiles/ directory i have files

Code:
dave1.txt
dave2.txt
dave3.txt
dave4.txt
dave5.txt

dave1 to dave4 .txt has

Code:
davehandsome
~
~
~
~
~
~

in it.. and dave5.txt dont have..

so i would like to
Code:
grep -v davehandsome

so that my output would only be dave5.txt
# 21  
Old 06-02-2016
That is not what grep -v BRE file... does. That grep command gives you a list of every line in each of the given file operands that does NOT contain a string matching the basic regular expression specified by BRE.

If you want to list all files in the directory home/solaris/unix/samplefiles/ which is a relative pathname of a sub-sub-sub-subdirectory of your current working directory, you could use something like:
Code:
cd home/solaris/unix/samplefiles/ && \
for file in *.txt
do	if ! grep -q davehandsome "$file"
	then	printf 'File "%s" does not contain the string "davehandsome"\n' "$file"
	fi
done

This User Gave Thanks to Don Cragun For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

Solaris Shell Scripting

Hi, Want to know, is there any way to restrict a Solaris user to Single Login. Means a particular user can login once and if he or someone else tries to login with his ID then a message displayed "user already logged in" and denies his attempt. Regard, Jeet (1 Reply)
Discussion started by: CountJeet
1 Replies

2. Shell Programming and Scripting

Read csv file, convert the data and make one text file in UNIX shell scripting

I have input data looks like this which is a part of a csv file 7,1265,76548,"0102:04" 8,1266,76545,"0112:04" I need to make the output data should look like this and the output data will be part of text file: 7|1265000 |7654899 |A| 8|12660000 |76545999 |B| The logic behind the... (6 Replies)
Discussion started by: RJG
6 Replies

3. Shell Programming and Scripting

How to add trailer record at the end of the flat file in the unix ksh shell scripting?

Hi, How to add trailer record at the end of the flat file in the unix ksh shell scripting can you please let me know the procedure Regards Srikanth (3 Replies)
Discussion started by: srikanth_sagi
3 Replies

4. Shell Programming and Scripting

Request for file read option in Unix shell scripting

Hi Friends, I would like to read all the record from one txt file to other file txt For example I have two txt file a.txt and b.txt. I need to read a.txt record by record and I need add the system date @ end of each record before moving it to b.txt. Could you please share the coding for... (4 Replies)
Discussion started by: vinoth124
4 Replies

5. Shell Programming and Scripting

generate tabular output from an input text file in unix shell scripting

Hi, I have the output (as below) which i want it to be in a table. For e.g. space utilization in PSE on path /logs is 0% space utilization in PSE on path /logs/tuxedo/tuxlsp is 16% space utilization in PSE on path /ldvarlsp/lsp/log is 37% space utilization in PSE on path /home is 6%... (7 Replies)
Discussion started by: pkbond
7 Replies

6. Shell Programming and Scripting

C Shell Scripting - HELP! - checking total args in a script

Hi, I 'm trying to learn the scripting language and am trying to create a script to open a C Program, allow the user to edit it, and then run it. What I have works but only when you enter the name to be compiled and the c program, but what if you only entered the 1 argument (cprogram.c) ? but I 'm... (3 Replies)
Discussion started by: patel_ankz
3 Replies

7. UNIX for Dummies Questions & Answers

Unix Shell Scripting -- update employees not present in input file

ALL, My shell script takes a employee file as input. I have to identify the list of employees not in the input file and update their status in the database. Approach I followed: by traversing through the input file add all the emplid's to a variable. update the status of employees not in... (2 Replies)
Discussion started by: sailussr
2 Replies

8. Solaris

How to check the file existence using shell scripting in Solaris-10

Hi, I have a script which will check the fiel existence, the lines are as below if !(test -d ./data) then mkdir data fi In the first line error occurs as below generatelicense.sh: syntax error at line 2: `!' unexpected Where as this script works fine in linux OS. How to solve... (2 Replies)
Discussion started by: krevathi1912
2 Replies

9. AIX

Unix shell scripting to find latest file having timestamp embedded...

Hi guys, I have a directory in UNIX having files with the below format, i need to pickup the latest file having recent timestamp embedded on it, then need to rename it to a standard file name. Below is the file format: filename_yyyymmdd.csv, i need to pick the latest and move it with the... (2 Replies)
Discussion started by: kaushik25
2 Replies

10. Shell Programming and Scripting

difference between AIX shell scripting and Unix shell scripting.

please give the difference between AIX shell scripting and Unix shell scripting. (2 Replies)
Discussion started by: haroonec
2 Replies
Login or Register to Ask a Question