Missing Name for redirect?

I get this error everytime I try to search for the files. I am new at this so i have no clue what this means. This is the command I input, trying to find the command to enter to list the files where sequentialInsert is be called.


grep -r sequentialInsert <~cs252/Assignments/commandsAsst/project>
< > are for redirect the input/output.
You need to escape them (with backslash or quotes)
grep -r '<~cs252/Assignments/commandsAsst/project>' sequentialInsert
Last edited on
Topic archived. No new replies allowed.