14 lines
332 B
Python
14 lines
332 B
Python
#!/usr/bin/env python
|
|
|
|
import os
|
|
|
|
path = os.getenv('PATH')
|
|
paths = path.split(os.pathsep)
|
|
|
|
for path_dir in paths:
|
|
if os.path.exists(path_dir):
|
|
all_files = os.listdir(path_dir)
|
|
print("{}: {}".format(path_dir, len(all_files)))
|
|
else:
|
|
print("WARNING: {} is in PATH, but does not exist".format(path_dir))
|