How to add charactère before all line return by prompt?

For example, if i do ls

I want to have a string like "<br> file1 ....... <br>file2 ..... <br>file3 ....."

i think i ve to use xargs, but i can't find the solution.

Thanks

maybe an alias?:

alias ls='ls -1 | sed 's/^/.../''
1 Like

Perfect, thanks

It works, thanks