Skip to content

Recursively query a Linux file system - similar to find cmd

License

Notifications You must be signed in to change notification settings

rootVIII/queryFS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

queryFS - recursively query a Linux/Unix file system by substring or permissions

Get the project, :
  
# Clone project:
git clone https://github.com/rootVIII/queryFS.git

# Build and run:
cd <project root>
go build -o bin/queryfs
./bin/queryfs 

# Build binary in ~/go/bin (available in path) and run:
cd <project root>
go install .
queryfs
  
Options:
  
# Required
-d     directory path to start searching from

# Optional (provide at least 1 option)
-s     display files/directories containing string
-p     display files/directories with matching permissions
-o     display files/directories with matching owner:group
  
Example Usage:
  
#  Search /home and all subdirectories for any file or directory path containing text "my_file.txt"
queryfs -d /home -s my_file.txt
  
  
#  Search entire file-system for any file with 777 permissions
queryfs -d / -p -rwxrwxrwx
  
  
#  Search entire file-system for any directory with 777 permissions
queryfs -d / -p drwxrwxrwx
  
  
#  Search /var and all subdirectories for any file with owner/group apache:apache
queryfs -d /var -o apache:apache
  
  
#  Only print results that have BOTH ".py" in path AND 0755 permissions:
queryfs -d /var -s .py -p -rwxr-xr-x
  
  
# Only print results that have ".py" in path, 755 permissions, AND apache:apache owner/group:
queryfs -d /var -s .py -p -rwxr-xr-x -o apache:apache
  

This project was developed on Ubuntu 18.04.4 LTS

Releases

No releases published

Packages

No packages published

Languages