Skip to content

Instantly share code, notes, and snippets.

View GauravSingh02's full-sized avatar

GauravSingh02

View GitHub Profile
@GauravSingh02
GauravSingh02 / find.sh
Last active June 4, 2023 03:51 — forked from gr1ev0us/find.sh
Cheatsheet for find linux
# List of cheatsheet for linux find.
# Syntax
find <path> <conditions> <actions>
# basic 'find file' commands
# --------------------------
find / -name foo.txt -type f -print # full command
find / -name foo.txt -type f # -print isn't necessary
find / -name foo.txt # don't have to specify "type==file"