Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

find the first occurence with grep in a linux file

cat $fileName | grep -im <number_of_times_we_want_the_contents_to_be_displayed> <text_search>

e.g:	cat file1.txt | grep -im 1 "my_text"

# The line above will cat file1.txt and search for only one existence of text "my_text" inside file1.txt.
# If there are 3 lines with text "my_text" in file1.txt it will print it only once.
# -m NUM, --max-count=NUM
#              Stop reading a file after NUM matching lines.  If the input
#              is standard input from a regular  file,  and  NUM  matching
#              lines  are  output, grep ensures that the standard input is
#              positioned to just after  the  last  matching  line  before
#              exiting,  regardless  of  the  presence of trailing context
#              lines.  This enables a calling process to resume a  search.
#              When  grep  stops  after NUM matching lines, it outputs any
#              trailing context lines.  When the -c or --count  option  is
#              also  used,  grep does not output a count greater than NUM.
#              When the -v or --invert-match option  is  also  used,  grep
#              stops after outputting NUM non-matching lines.
Comment

PREVIOUS NEXT
Code Example
Shell :: clear files in storage bucket 
Shell :: git messages 
Shell :: admin passwort powershell script 
Shell :: --force-confold 
Shell :: parar serviço na porta 
Shell :: 7.14 ES on linux installation 
Shell :: powershell copy folder to remote computer 
Shell :: git stop tracking files matching pattern 
Shell :: github tips 
Shell :: android studio tar install to ubuntu 20 
Shell :: Show 10 Largest Open Files 
Shell :: install dynamic library gd2 
Shell :: il pacchetto non è valido oppure è corrotto (firma PGP): 
Shell :: rails 6 action_mailbox:install not working 
Shell :: deb http://la-mirrors.evowise.com/ubuntu/ disco-security multiverse 
Shell :: how-to-remove-show-applications-icon-from-the-dock-in-ubuntu-20-04 
Shell :: how to create a local user account in windows 10 (list the steps) 
Shell :: linux seq leading zero 
Shell :: github clone mirror 
Shell :: ionic capacitor file-chooser 
Shell :: Brave Beta on OpenSUSE 15+ 
Shell :: docker php fpm xsl 
Shell :: homebrew install nasm 
Shell :: odoo 14 download github 
Shell :: git diff without pagination 
Shell :: leetcode even digits 
Shell :: powershell invert 
Shell :: git add file from another branch 
Shell :: history command windows 
Shell :: install fabric sample 
ADD CONTENT
Topic
Content
Source link
Name
5+2 =