Skip to content

Instantly share code, notes, and snippets.

@lacymorrow
Last active March 27, 2024 20:08
Show Gist options
  • Save lacymorrow/677505f323b781317b87359fb8847bf0 to your computer and use it in GitHub Desktop.
Save lacymorrow/677505f323b781317b87359fb8847bf0 to your computer and use it in GitHub Desktop.
Shell Cheat Sheet
# https://yurisk.info/2023/03/28/mdfind-macos-examples-cheat-sheet
# Find files where filename includes string (case-insensitive)
mdfind -name ...

# Find folders where name includes string (case-insensitive)
mdfind -name ... kind:folder

# See where an alias was defined

# bash
bash -ixlc : 2>&1 | grep ...
# zsh
zsh -ixc : 2>&1 | grep ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment