Search and filtersLinux CLI
awk
awk
sed
Transform text streams inline while filtering.
Command
awk '{print $1,$3}' access.log
Example usage
Extract or modify fields during stream processing.
awk '{print $1,$3}' access.log
sed -n '1,10p' <file>
Related tags
Search and filterssedshellprocessnetworking