Last active
November 30, 2024 14:19
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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