Nosrac / lsql

Use SQL-style syntax to find the files you're looking for from the command line

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

lsql

Use SQL-style syntax to find the files you're looking for from the command line

Usage

lsql.php [ directoryA, ... ] "expression"

Columns

  • name (string)
  • path (string)
  • extension (string)
  • content (string)

Example Expressions

  • Find php files
extension = 'php'
  • Find php files containing oldClass
extension = 'php' AND content contains "oldClass"
  • Find files in a directory
path contains "static_files"

About

Use SQL-style syntax to find the files you're looking for from the command line


Languages

Language:PHP 100.0%