Skip to content

Instantly share code, notes, and snippets.

@rojenzaman
Created July 31, 2022 15:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rojenzaman/d8892a4e098d070acdbe903dbc37b18b to your computer and use it in GitHub Desktop.
Save rojenzaman/d8892a4e098d070acdbe903dbc37b18b to your computer and use it in GitHub Desktop.
Desktop file finder
#!/bin/bash
if [ "$#" -lt 1 ]; then
echo "$(basename "${0}") <name>"
exit 1
fi
find / -type f -name "*.desktop" -exec grep -Hn "${1}" "{}" \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment