Skip to content

Instantly share code, notes, and snippets.

View chealwoo's full-sized avatar

Daniel Chealwoo Lee chealwoo

View GitHub Profile
@JadedEvan
JadedEvan / unix-cli-tips.md
Last active December 12, 2019 06:41
UNIX Tips - a catalog of useful UNIX commands

find commands

find . -regextype posix-egrep -regex ".*(rb|js)$"

Find all files ending in .rb or .js.

find . -name "*js" -o -name "*rb"

Same as above, not using regular expressions.