Skip to content

Instantly share code, notes, and snippets.

@fartbagxp
Created April 9, 2018 17:01
Show Gist options
  • Save fartbagxp/fd9559a91fc61cb6fdd828126617e0ef to your computer and use it in GitHub Desktop.
Save fartbagxp/fd9559a91fc61cb6fdd828126617e0ef to your computer and use it in GitHub Desktop.
Move files in subfolders up one level
#!bin/bash
find . -mindepth 2 -type f -print -exec mv {} . \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment