Admin Linux - comando head

head è un opposto fondamentale di tail in relazione a quale parte delle operazioni sui file vengono eseguite. Per impostazione predefinita,head leggerà le prime 10 righe di un file.

head offre opzioni simili a tail -

Interruttore Azione
-c Ultimo output indicato in kilobyte
-n Emette n numero di righe da eof
-q Nessuna intestazione solo il contenuto del file

Note - Head offre no -f opzione, poiché i file vengono aggiunti dal basso.

headè utile per leggere le descrizioni dei file di configurazione. Quando si crea un file di questo tipo, è una buona idea utilizzare le prime 10 righe in modo efficace.

[[email protected] centos]# head /etc/sudoers 
## Sudoers allows particular users to run various commands as 
## the root user, without needing the root password. 
## 
## Examples are provided at the bottom of the file for collections 
## of related commands, which can then be delegated out to particular 
## users or groups. 
##  
## This file must be edited with the 'visudo' command.

## Host Aliases 
[[email protected] centos]#