Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lolgear/2545765e59e3b7368985f324b9863cd9 to your computer and use it in GitHub Desktop.
Save lolgear/2545765e59e3b7368985f324b9863cd9 to your computer and use it in GitHub Desktop.
Search in a directory Core and put all headers in one directory Core/Include
find Core -name '*.h' | perl -ne 'chomp; my $f = (split("\/"))[-1]; my $s = qq(mv $_ Core/Include/$f); print $s, "\n"; print qx($s);'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment