Skip to content

Instantly share code, notes, and snippets.

@ctrleffive
Last active July 22, 2023 03:12
Show Gist options
  • Save ctrleffive/c9d912c32bc5e865962fee08666ee962 to your computer and use it in GitHub Desktop.
Save ctrleffive/c9d912c32bc5e865962fee08666ee962 to your computer and use it in GitHub Desktop.

📜 Useful Commands

🍎 macOS & Linux Commands

  1. Find and move files to certain folder recursively.
find "FOLDER_PATH_TO_LOOK" -type f -name "*.EXT" -exec mv {} "FOLDER_PATH_TO_MOVE" \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment