What is newline character — '\n'

前端 未结 8 2119
挽巷
挽巷 2020-12-07 01:18

This is a very basic concept, but something I have never been able to articulate that well. and I would like to try to spell it and see where I go wrong.

If I have t

相关标签:
8条回答
  • 2020-12-07 02:08
    sed 's/$/\n/' states
    
    0 讨论(0)
  • 2020-12-07 02:13

    Try this:

    $ sed -e $'s/\n/\n\n/g' states
    
    0 讨论(0)
提交回复
热议问题