Sponsored Content
Top Forums UNIX for Dummies Questions & Answers [Solved] Wildcards used in find, ls and grep commands Post 302730581 by vbe on Tuesday 13th of November 2012 08:48:23 AM
Old 11-13-2012
About grep:
Code:
slo4:/export/home/vbe $ cat file*.txt
Blue skies
blutt
Blott on the landscape
#
slo4:/export/home/vbe $ grep "blu" *.txt  
file001.txt:blutt
slo4:/export/home/vbe $ grep "Blu*" *.txt
file001.txt:Blue skies
file001.txt:Blott on the landscape
slo4:/export/home/vbe $ grep 'Blu*' *.txt
file001.txt:Blue skies
file001.txt:Blott on the landscape
slo4:/export/home/vbe $ grep Blu* *.txt   
file001.txt:Blue skies
file001.txt:Blott on the landscape
slo4:/export/home/vbe $ grep Blu *.txt  
file001.txt:Blue skies
slo4:/export/home/vbe $ uname -sr
SunOS 5.10
slo4:/export/home/vbe $

What were you saying? Smilie
This User Gave Thanks to vbe For This Post:
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

grep and wildcards

Hi guys, a small problem today, I'm grepping a log file containing lines like this below: Mar 09 16:04:00 blabla Mar 09 16:04:02 blabla Mar 09 16:04:05 blabla Mar 09 16:04:15 blabla Mar 09 16:05:06 blabla Mar 09 16:05:23 blabla Mar 09 16:05:25 blabla ... in this file I'm grepping... (5 Replies)
Discussion started by: Lomic
5 Replies

2. UNIX for Dummies Questions & Answers

find and grep commands

I'm having trouble with the following commands i. count the number of lines which end in a 4 letter word grep '{4\}$' bfile <<seems to print out everything abc abc abcd joe joe john bob bill gregory greg greg gregory the grep command prints out the lines with 4 letter words and the... (3 Replies)
Discussion started by: StrengthThaDon
3 Replies

3. UNIX for Dummies Questions & Answers

help with find & grep commands

Folks; First about find: when i run this: find . -name '*log*' -mtime +10 -print | sed 's+^\./++;s+/.*++' | sort -u i got list of log files but also get a directories (although directory names doesn't have "log" in it). How can i exclude the directory from the output of this find command? ... (2 Replies)
Discussion started by: moe2266
2 Replies

4. Shell Programming and Scripting

Perl - grep issue in filenames with wildcards

Hi I have 2 directories t1 and t2 with some files in it. I have to see whether the files present in t1 is also there in t2 or not. Currently, both the directories contain the same files as shown below: $ABC.TXT def.txt Now, when I run the below script, it tells def.txt is found,... (5 Replies)
Discussion started by: guruprasadpr
5 Replies

5. Homework & Coursework Questions

find grep sed commands homework

Use and complete the template provided. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: I have to make as home work several commands with gerp find and sed 2. Relevant commands, code, scripts, algorithms: FIND command -use command find... (8 Replies)
Discussion started by: ViruS89
8 Replies

6. Homework & Coursework Questions

Need help using find or locate with wildcards

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: List all files in ~c12100 directory beginning with "BOZO" that end with either "123" or "456" 2. Relevant... (3 Replies)
Discussion started by: ScarletRavin
3 Replies

7. Shell Programming and Scripting

Grep wildcards

Hi all I want to search for number in file presented with wildcard as shown below. cat file.txt 1405 1623 1415 ....... ....... How to search for the number 141526 for example? If the number exist print "Number 141526 exist" if no, print "The number not exist" Thank you in advance. (3 Replies)
Discussion started by: vasil
3 Replies

8. Shell Programming and Scripting

[Solved] Grep within find command

Platform: AIX 6.1/ksh Question1. I want to grep for the string "CUSTOM_PKMS" in all the files in server except those files with extensions .dbf , .ctl and .dmp I started running the following command but it is taking too long because there are lots of .dbf , .ctl and .dmp files in this... (6 Replies)
Discussion started by: John K
6 Replies

9. Shell Programming and Scripting

Grep multiple patterns that contain wildcards

job_count=`grep -e "The job called .* has finished | The job called .* is running" logfile.txt | wc -l` Any idea how to count those 2 patterns so i have a total count of the finished and running jobs from the log file? If i do either of the patterns its works okay but adding them together... (8 Replies)
Discussion started by: finn
8 Replies

10. UNIX for Dummies Questions & Answers

Find command and use of wildcards

greetings, below is the find command i am using for some filesystem maintenance: find /data/Engine \( -type d -name .snapshot -prune -o -type d -wholename "/data/Engine/*/CAE" \ -prune -o -type d -wholename "/data/Engine/*/CAD" -prune -o -name ".*.case" \)\ -mtime +365 -print0 -fls... (5 Replies)
Discussion started by: crimso
5 Replies
ucodeadm(1M)						  System Administration Commands					      ucodeadm(1M)

NAME
ucodeadm - update processor microcode SYNOPSIS
/usr/sbin/ucodeadm -v /usr/sbin/ucodeadm -umicrocode-text-file /usr/sbin/ucodeadm -i [-R path] microcode-text-file DESCRIPTION
The ucodeadm utility can be used to report running microcode revision on the processors, update microcode, or install microcode on the tar- get system to be used during the boot process. The microcode-text-file can be obtained from processor vendors. OPTIONS
-v Report microcode revision. -u microcode-text-file Update microcode on all cross-call interrupt ready processors. -i microcode-text-file Install microcode files on target system to be used during the next boot cycle. The text file name must have the vendor name prefix, such as "intel" or "amd". By default the microcode files will be installed at: /platform/i86pc/ucode/$VENDORSTR/ where VENDORSTR is either "GenuineIntel" or "AuthenticAMD". -R alternate path Install microcode path in the alternate path. EXAMPLES
Example 1 Reporting the Microcode Revision The following example displays the microcode revision that is currently running: # ucodeadm -v Example 2 Updating the Processor Microcode The following example updates the processor microcode to intel-ucode.txt: # ucodeadm -u intel-ucode.txt Example 3 Installing the Microcode on the Target System The following example installs the microcode on the target system, /export/ucode-path: # ucodeadm -i -R /export/ucode-path intel-ucode.txt If an alternate path is used when installing the microcode on the target system, the installed microcode file is not used on the next boot cycle. EXIT STATUS
The following exit values are returned: 0 Successful completion. >0 An error occurred. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWcsu | +-----------------------------+-----------------------------+ |Interface Stability |Stable | +-----------------------------+-----------------------------+ SEE ALSO
psradm(1M), psrinfo(1M), attributes(5) SunOS 5.11 10 Jul 2007 ucodeadm(1M)
All times are GMT -4. The time now is 02:04 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy