Skip to content

Instantly share code, notes, and snippets.

@kevin-ashton
Last active August 29, 2015 14:01
Show Gist options
  • Save kevin-ashton/76a20deacde59532da14 to your computer and use it in GitHub Desktop.
Save kevin-ashton/76a20deacde59532da14 to your computer and use it in GitHub Desktop.
Linux Search Command (simple version)
#!/bin/bash
#
find . -type f -exec grep -i "$1" {} \; -print
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment