6 lines
66 B
Bash
6 lines
66 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# prettify PATH-Output:
|
||
|
echo $PATH | sed s/\:/\\n/g
|
||
|
|