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
Post a Comment