regex - How to use UNIX find to find (file1 OR file2)? -


bash in the command line, I want to find all the files named foo Has been or bar . I tried to do this:

  find -name "foo \ | bar"  

but it does not work What is the correct syntax?

you want:

  find \ (-name "foo "-o-name" bar "\)  

view the page (of all locations)


Comments

Popular posts from this blog

python - Overriding the save method in Django ModelForm -

html - CSS autoheight, but fit content to height of div -

qt - How to prevent QAudioInput from automatically boosting the master volume to 100%? -