我想找出我的目录及其所有子目录.py
中有多少个文件。我该怎么做?Windows 或 Linux 都可以。GarlicSim
答案1
在 Windows 平台上:
dir /s *.py
答案2
在 Linux 上:
find /path/to/GarlicSim -type f -name "*.py" | wc -l
答案3
find $DIR -type f | sed 's/.*\.//' | sort | uniq -c | sort -rn
我想找出我的目录及其所有子目录.py
中有多少个文件。我该怎么做?Windows 或 Linux 都可以。GarlicSim
在 Windows 平台上:
dir /s *.py
在 Linux 上:
find /path/to/GarlicSim -type f -name "*.py" | wc -l
find $DIR -type f | sed 's/.*\.//' | sort | uniq -c | sort -rn