Skip to content

Instantly share code, notes, and snippets.

@rindeal
Last active March 4, 2016 14:15
Show Gist options
  • Save rindeal/acd278cf81f5bdc10cb9 to your computer and use it in GitHub Desktop.
Save rindeal/acd278cf81f5bdc10cb9 to your computer and use it in GitHub Desktop.
Find outdated .desktop files
#!/bin/bash -
grep -a -r -P -o '(?:(?<=Exec=)([^"]\S+)|(?<=Exec=")(\S+)(?="))' \
-- /{usr,home/*/.local}/share/applications | sort -u | \
while read m; do
desktop_file="${m%:*}"
exec_name="${m##*:}"
if ! command -v "$exec_name" 2>&1 >/dev/null; then
echo "$desktop_file|$exec_name"
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment