Forrest logo
back to context overview

yank

List of commands for yank:

  • yank:tldr:088bf yank: Yank an entire line.
    $ ${sudo dmesg} | yank -l
    try on your machine
    explain this command
  • yank:tldr:3eda3 yank: Yank using a specific delimiter.
    $ ${echo hello=world} | yank -d ${=}
    try on your machine
    explain this command
  • yank:tldr:5b003 yank: Only yank fields matching a specific pattern.
    $ ${ps ux} | yank -g "${[0-9]+}"
    try on your machine
    explain this command
  • yank:tldr:a0869 yank: Yank using the default delimiters (\f, \n, \r, \s, \t).
    $ ${sudo dmesg} | yank
    try on your machine
    explain this command
back to context overview