Skip to content

Instantly share code, notes, and snippets.

@imtapps
Created April 27, 2012 14:32
Show Gist options
  • Save imtapps/2509726 to your computer and use it in GitHub Desktop.
Save imtapps/2509726 to your computer and use it in GitHub Desktop.
Delete all files that have no extenions
ls -aF | grep \*$ | grep -v '\.' | sed s/.$// | xargs rm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment