Forrest logo
back to context overview

strings

List of commands for strings:

  • strings:ai:8d3e5 find delated history
    $ strings ~/Library/Safari/History.db | grep -A 1 deleted | grep hhttp | awk '{print "{\"command\": \""$0"\", \"description\": \"Deleted History URL\"}"}'
    try on your machine
    explain this command
  • strings:tldr:33239 strings: Prefix each result with its offset within the file in hexadecimal.
    $ strings -t x ${filename}
    try on your machine
    explain this command
  • strings:tldr:3f367 strings: Limit results to strings at least *length* characters long.
    $ strings -n ${length} ${filename}
    try on your machine
    explain this command
  • strings:tldr:5d509 strings: Prefix each result with its offset within the file.
    $ strings -t d ${filename}
    try on your machine
    explain this command
  • strings:tldr:ef9de strings: Print all strings in a binary.
    $ strings ${filename}
    try on your machine
    explain this command
back to context overview