Sponsored Content
Full Discussion: Wrong output in find command
Top Forums Shell Programming and Scripting Wrong output in find command Post 302418246 by NPRao on Monday 3rd of May 2010 03:49:14 PM
Old 05-03-2010
Try this -
Code:
#/bin/ksh
#set -vx

for fname in `find . -type f -size -1024c`
do
        echo $fname
done

 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

output of find command

Hi, I am confused about the output of find command. Please see the two find commands below. When i put "*.c" i get lots of files. But when i put *c only i get only one file. Any answer?? $ find . -name "*c" ./clarify/cheval/hp_server/rulemanager/rulemansvc... (3 Replies)
Discussion started by: shriashishpatil
3 Replies

2. UNIX for Dummies Questions & Answers

problem with output of find command being input to basename command...

Hi, I am triying to make sure that there exists only one file with the pattern abc* in path /path/. This directory is having many huge files. If there is only one file then I have to take its complete name only to use furter in my script. I am planning to do like this: if ; then... (2 Replies)
Discussion started by: new_learner
2 Replies

3. Shell Programming and Scripting

Sort command giving wrong output

Hi all, I have a problem with sort command. i have a file which looks like this: "file1 1073 java/4 1073 java/180 1073 java/170 1073 java/176 1073 java/167 1073 java/40 1073 java/33 1073 java/136 28988 java/76 28988 java/73 28988 java/48 28988 java/26" and i want to sort... (8 Replies)
Discussion started by: usha rao
8 Replies

4. Shell Programming and Scripting

tr command giving wrong output

Hi All, i have a file which have many fields delimited by ,(comma) now i have to show only few fields and not all. the sample text file looks like this: TYPE=SERVICEEVENT, TIMESTAMP=05/06/2009 11:01:40 PM, HOST=sppwa634, APPLICATION=ASComp, FUNCTION=LimitsService, SOU... (8 Replies)
Discussion started by: usha rao
8 Replies

5. UNIX for Advanced & Expert Users

what is wrong with this find command

i am trying to find the files which are more than 100MB and it was created 10 days ago. find /lola/loaded -size +102400 -mtime -10 -print | xargs ls -ltr -rw-rw-r-- 1 lola_adm gdrmp 82054170 Jun 23 06:17 /lola/loaded/ILMEMBER20090622.txt -rw-rw-r-- 1 lola_adm gdrmp 652080494 Jun 24... (3 Replies)
Discussion started by: sudhiroracle
3 Replies

6. Emergency UNIX and Linux Support

getting wrong output with AWK command!!!

i have a file which gets appended with 9 records daily and the file keeps growing from then...i use to store the previous day files count in a variable called oldfilecount and current files count as newfilecount.my requirement is that i need to start processing only the new records from the... (3 Replies)
Discussion started by: ganesh_248
3 Replies

7. Shell Programming and Scripting

Check my script and correct the find command if wrong

Hello All, Here I am trying to find all the directories whose name starts with EFS or HOTFIX like in below example and below is my code but I don’t know why this is not working correctly. drwxr-xr-x 3 qabuild denccefs 4096 Sep 23 21:36 EFS110929A_SOURCE/ -rwxrwxr-x 1 qabuild... (2 Replies)
Discussion started by: anuragpgtgerman
2 Replies

8. Shell Programming and Scripting

Grep command showing wrong output in Linux

Hi All I am trying to run a script in linux wherein i have a command like this grep ^prmAttunityUser= djpHewr2XFMAttunitySetup_ae1_tmp djpHewr2XFMAttunitySetup_ae1_tmp is a temporary file in which the user value is stored but this command in the script returns me balnk value whereas it has a... (4 Replies)
Discussion started by: vee_789
4 Replies

9. Shell Programming and Scripting

Output of find command to variable?

Hi, I'd like to assign the output of the find command to a variable. What I need is to run the find command, and if it returns zero files, the program exits. so i'm trying to assign the output of the find command to the $var1 variable....and then if this is less than one, I echo a... (2 Replies)
Discussion started by: horhif
2 Replies

10. Shell Programming and Scripting

If && command giving wrong output

Hi All, I am trying to run a script which will search for 2 strings(stopped,started) in a text file and echo an output depending on below condition -bash-3.2$ cat trial1.txt v ggg f -bash-3.2$ cat trial1.sh VAR9=` grep 'stopped' /tmp/trial1.txt` VAR10=` grep 'started'... (4 Replies)
Discussion started by: srkmish
4 Replies
CCCC(1) 						      General Commands Manual							   CCCC(1)

NAME
cccc - C and C++ Code Counter, a software metrics tool SYNOPSIS
cccc [options] file1.c ... DESCRIPTION
CCCC analyses and reports measurements of source code in C, C++, and Java. It was developed to augment programmers' instinctive applica- tion of numeric rules of thumb about what constitutes high or low quality products with an automated analysis tool. CCCC processes the files listed on its command line. If the filenames include '-', read a list of files from standard input. This program is work in progress and is not well documented. Please be prepared to refer to the source code for the meaning of some options. OPTIONS
--help Generate this help message. --outdir=dname Directory for generated files (default=.cccc). --html_outfile=fname Name of primary HTML report generated (default=outdir/cccc.html). --db_infile=fname Preload internal database from named file (default=no initial content). --db_outfile=fname Save internal database to named file (default=outdir/cccc.db). --opt_infile=fname Load options from named file (default=use compiled-in option values, refer to cccc_opt.cc for option information). --opt_outfile=fname Save options to named file (default=outdir/cccc.opt). --lang=string Use language specified for files specified after this option. Languages supported are c, c++, ada, and java (default=use lan- guage/extension mapping controlled by options). --report_mask=hex Control report content (refer to ccccmain.cc for mask values). --debug_mask=hex Control debug output content (refer to ccccmain.cc for mask values). AUTHOR
CCCC was written by Tim Littlefair <tim_littlefair@hotmail.com>. This manual page was written by Colin Watson <cjwatson@debian.org> for the Debian system (but may be used by others). CCCC(1)
All times are GMT -4. The time now is 05:22 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy