New line escape sequance for multi line header title? #3664
-
what is the escape sequance insside the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
--header $'foo\nbar'
You shouldn't need ps aux | fzf --header 'Current processes' --header-lines 1 Footnotes |
Beta Was this translation helpful? Give feedback.
Try it with
$'
12--header $'foo\nbar'
You shouldn't need
--header-lines
. It's more commonly used when your data may include a tableheader and you don't want it to be selectable. For example:
Footnotes
Bash Reference Manual - ANSI-C Quoting ↩
bash quotes (wizardzines.com) ↩