cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
UNIX/Linux Programming
Missing Name for redirect?
Missing Name for redirect?
Mar 28, 2011 at 6:26pm UTC
ccund001
(24)
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>
Mar 29, 2011 at 1:07am UTC
ne555
(10692)
< > 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
Mar 29, 2011 at 1:08am UTC
Topic archived. No new replies allowed.