Skip to content

Instantly share code, notes, and snippets.

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 brandonpittman/48bf1d21de0f62fa2cd46e5fafbbc1b9 to your computer and use it in GitHub Desktop.
Save brandonpittman/48bf1d21de0f62fa2cd46e5fafbbc1b9 to your computer and use it in GitHub Desktop.
Accidentally create a non-dotfile at the base of your home directory? Move those files to the desktop!
#!/bin/bash
find ~ -maxdepth 1 -type f -not -name '.*' -exec mv {} ~/Desktop \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment