Skip to content

Instantly share code, notes, and snippets.

@mranawake
Last active October 13, 2019 22:16
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 mranawake/b75a241f9bcc557b971541173f6c164e to your computer and use it in GitHub Desktop.
Save mranawake/b75a241f9bcc557b971541173f6c164e to your computer and use it in GitHub Desktop.
Move all files, folders and hidden files from one folder to another folder.
# set the dotglob shell optio if you want to move dot (hidden) files
shopt -s dotglob
# move all files, folders and hidden (if above option set) to a destination folder.
mv ~/source/* ~/destination
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment