Strings (Unix): Difference between revisions

Content deleted Content added
mNo edit summary
m Task 70: Update syntaxhighlight tags - remove use of deprecated <source> tags
Line 42:
==Example==
Using ''strings'' to print sequences of characters that are at least 8 characters long (this command prints the system's [[BIOS]] information; should be run as root):
<sourcesyntaxhighlight lang="bash">
dd if=/dev/mem bs=1k skip=768 count=256 2>/dev/null | strings -n 8 | less
</syntaxhighlight>
</source>
 
==See also==