Last active
July 17, 2017 06:42
-
-
Save ryanchang/3c4927866e5e39277d5a94b39cc648ed to your computer and use it in GitHub Desktop.
软件著作权申请打印代码专用😂
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
#!/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