11 lines
130 B
Bash
Executable File
11 lines
130 B
Bash
Executable File
#!/bin/sh
|
|
|
|
printf '%s\n' "$PATH" \
|
|
| tr : "\n" \
|
|
| sort \
|
|
| uniq \
|
|
| parallel walk -n \
|
|
| sed 's:.*\/::' \
|
|
| sort \
|
|
| uniq
|