9 examples for man

{{ score }}
  # Shows the manual for using the command 'ls'
man ls
        
{{ score }}
  # Searches for all manual pages which mention "ruby"
man -K "ruby"
        
{{ score }}
  # Show the ASCII table
man ascii
        
{{ score }}
  # Search man page names and short descriptions for STRING
man -k STRING
        
{{ score }}
  # Search the section 3 of the manual for entry "printf"
man 3 printf
        
{{ score }}
  # Shows the manual for the conditional operator, '['
man [
        
{{ score }}
  # Buscar a que seccion pertenece el man page de un comando
# Similiar al comando whatis
man -f STRING
        
{{ score }}
  # Opens up the manual page for the command 'touch'
man touch
        
{{ score }}
  # Opens up the manual page for the command 'machine'
man machine