cut

Cut out fields from stdin or files. More information: <https://www.gnu.org/software/coreutils/cut>.

Install

All systems
curl cmd.cat/cut.sh
Debian Debian
apt-get install coreutils
Ubuntu
apt-get install coreutils
Alpine
apk add coreutils
Arch Arch Linux
pacman -S coreutils
image/svg+xml Kali Linux
apt-get install coreutils
CentOS
yum install coreutils
Fedora
dnf install coreutils
Windows (WSL2)
sudo apt-get update sudo apt-get install coreutils
OS X
brew install coreutils
Raspbian
apt-get install coreutils
Docker
docker run cmd.cat/cut cut powered by Commando

Cut out fields from stdin or files. More information: <https://www.gnu.org/software/coreutils/cut>.

  • Print a specific character/field range of each line:
    command | cut --characters|fields=1|1,10|1-10|1-|-10
  • Print a field range of each line with a specific delimiter:
    command | cut --delimiter="," --fields=1
  • Print a character range of each line of the specific file:
    cut --characters=1 path/to/file

© tl;dr; authors and contributors