Skip to content

Instantly share code, notes, and snippets.

@DavideDunne
Created March 31, 2024 20:25
Show Gist options
  • Save DavideDunne/4524cadfcbd9f6979ad00d3ce11cacef to your computer and use it in GitHub Desktop.
Save DavideDunne/4524cadfcbd9f6979ad00d3ce11cacef to your computer and use it in GitHub Desktop.
Make all AppImages in the user home directory executable
#!/bin/bash
echo "Make all the appimages in user directory executable"
find ~ -type f -iname "*.AppImage" -exec chmod u+x {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment