Answers for "bash command to pretty print directory"

0

bash command to pretty print directory

ls -R | grep ":$" | sed -e 's/:$//' -e 's/[^-][^\/]*\//--/g' -e 's/^/   /' -e 's/-/|/'
Posted by: Guest on June-17-2021

Browse Popular Code Answers by Language