Skip to content

Instantly share code, notes, and snippets.

@ryanchang
Last active July 17, 2017 06:42
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 ryanchang/3c4927866e5e39277d5a94b39cc648ed to your computer and use it in GitHub Desktop.
Save ryanchang/3c4927866e5e39277d5a94b39cc648ed to your computer and use it in GitHub Desktop.
软件著作权申请打印代码专用😂
#!/bin/bash
for file in $( find . -name \*.m|grep -v lib ); do
echo "$file"
cat $file
echo "\n"
done
for file in $( find . -name \*.h|grep -v lib ); do
echo "$file"
cat $file
echo "\n"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment