Finding Something
Using tools to find files, keywords in the Linux Filesystem
GREP
grep -rl "<keyword>" <path>
# grep -rl "service" /rootFlag
Meaning
FIND
#Syntax:
#find options starting/path expression
find / -name abc.txt Find files based on the time they were modified
Find files recursively
Set File Permissions in bulk
Last updated