Giter Club home page Giter Club logo

queryfs's Introduction

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

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.