Skip to content

Instantly share code, notes, and snippets.

@CodeShane
Created February 15, 2015 06:41
Show Gist options
  • Save CodeShane/a2ed5d50f08bff8df3d3 to your computer and use it in GitHub Desktop.
Save CodeShane/a2ed5d50f08bff8df3d3 to your computer and use it in GitHub Desktop.
Recursively move all files from current dir and below to the parent dir.
for /R . %%G IN (*.*) do move "%%G" ..
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment