Cheatsheet & Examples: cut
The cut command is used to extract specific parts of a file, such as columns, bytes, or characters, based on provided criteria.
Extract specific fields by default delimiter (tab)
Example Usage:
cut -f1,3 file.txt
What it does:
Extracts the first and ...
tech.mrleong.net3 min read