Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
397 views
in Technique[技术] by (71.8m points)

cut - cutting a string into several lines in bash

I want to take the path of the local directory and put each directory on the path in a different line. I've tried to do it using cut:

pwd | cut -f 1- -d/ --output-delimiter=

but it doesn't change the '/'s into EOL, but puts n's instead. What am I doing wrong?

question from:https://stackoverflow.com/questions/4088450/cutting-a-string-into-several-lines-in-bash

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

This should do the trick

pwd | tr '/' '
'

If you don't want an empty line in the beginning (due to the initial /) you could do

pwd | cut -b2- | tr '/' '
'

Example:

#aioobe@r60:~/tmp/files$ pwd
/home/aioobe/tmp/files
#aioobe@r60:~/tmp/files$ pwd | cut -b2- | tr '/' '
'
home
aioobe
tmp
files

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...