Question about piping in unix, pretty basic!?
Question about piping in unix, pretty basic!? New to unix... what command would I use in order to this??
Use a command to find all files in the directory /afs/cats.ucsc.edu/courses/cmps012b-wm that match the wildcard *.java and pipe this into the command xargs grep -li auxlib. The pipe is the stick character (|). Redirect stdout into a file called java.auxlibs.
|