4 lines
108 B
Bash
Executable file
4 lines
108 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# echo $PATH | sed 's/:/ /g' | xargs ls --color=auto
|
|
echo "$PATH" | xargs -d ":" ls --color=auto
|