Searching the Unix Tree
find ~ -name arrayDat*grep -r "arrayDat*" .Last updated
Was this helpful?
find
Searches directories to find a directory or file.
find ~ -name arrayDat*grep
Searches a file for a specific pattern.
Can be used similarly to find, but it also searches file contents.
grep -r "arrayDat*" .Last updated
Was this helpful?
Was this helpful?
