Skip to content

Instantly share code, notes, and snippets.

@Konard
Last active November 30, 2024 14:19
Show Gist options
  • Save Konard/e5f98bdd796d33d638a922bc1fa3885c to your computer and use it in GitHub Desktop.
Save Konard/e5f98bdd796d33d638a922bc1fa3885c to your computer and use it in GitHub Desktop.
A command to get all files to console to copy them to GPT
find . -type f -not -path "./target/*" -not -path "./.DS_Store" -not -path "./Cargo.lock" -exec sh -c 'echo "\n---"; echo "{} :"; echo "---\n"; cat {}' \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment