If I have a text-file with a structured list like this:
#linux
##audio
###sequenzer
####qtractor
###drummachine
####hydrogen
##scores
###lilypond
###musescore
##bureau
###kalender
####calcurse
###todo
####tudu
How can I print it tree
like to the command-line?
linux/
├── audio
│ ├── drummachine
│ │ └── hydrogen
│ └── sequenzer
│ └── qtractor
├── bureau
│ ├── kalender
│ │ └── calcurse
│ └── todo
│ └── tudu
└── scores
├── lilypond
└── musescore
Is there an application that I'm missing out?
split("", path_arr)
ifdelete path_arr
is not supported (delete
is standard, it's passing it an array as a whole that used not to be). – Stéphane Chazelas Feb 04 '22 at 10:05tree --version
outputstree v1.7.0 (c) 1996 - 2014 by Steve Baker, Thomas Moore, Francesc Rocher, Florian Sesser, Kyosuke Tokoro
and it doesn't have a--fromfile
option (or any other that'd let it take such input as far as I can see). Whattree
version are you using? – Ed Morton Feb 04 '22 at 23:14tree v1.8.0
– pLumo Feb 05 '22 at 08:32directory-list
? – nath Feb 10 '22 at 03:12