find_python_files_and_display_content.sh
· 86 B · Bash
原始文件
#!/bin/bash
find . -name "*.py" -exec sh -c 'echo "=== {} ==="; cat "{}"; echo ""' \;
| 1 | #!/bin/bash |
| 2 | find . -name "*.py" -exec sh -c 'echo "=== {} ==="; cat "{}"; echo ""' \; |
| 3 |