/ Published in: Other
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
En Linux: find . -type f -name "*.h" -print0 | xargs -0 --replace=% cp % result/include/ En otros Unix: $ pwd /Users/taylor/Desktop/foo $ find . -type f -name "*mp3" -print0 | \ xargs -0 -J% mv % /Users/taylor/Desktop/foo $