Answers for "tree alternative for linux"

0

linux alternatives to tree

#replica of tree comand using find and sed
function tree() {
    find ${1:-.} | sed -e "s/[^-][^/]*//  |/g" -e "s/|([^ ])/|-1/"
}
Posted by: Guest on September-16-2020

Code answers related to "tree alternative for linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language