A field selection command-line tool
Project description
# sel
sel is an inline field selection and table transformation tool that aims to replace cut.
pip install sel
## Simple
Selecting a field from a line requires a single character:
$ echo a b c d e | sel 3 c
sel understands field ranges, in python style:
$ echo “a b c d e” | sel 2:4 b c d
$ echo “a b c d e” | sel 2:-2 b c d
$ echo “a b c d e” | sel 3: c d e
## Flexible
By default, sel splits the input on whitespace. It can also use a custom string or regular expression:
$ cat users.csv 1241,Bob 3192,MitM 3255,Alice
$ cat users.csv | sel 1 –delim , 1241 3192 3255
$ echo 1a2b3c4d | sel –regex [a-z] 2:3 2 3
## Powerful
sel works well on multiline input, and can take advantage of table headers if present. It can also produce tabular outputs.
$ ps aux | sel 1 –skip-header root user1 user2
$ ps aux | sel –align %MEM PID COMMAND PID COMMAND %MEM 2414 /opt/google/chrome/chrome 1.7 5272 /opt/sublime_text_2/sublime_text 1.6 4662 /usr/bin/python3 1.5 2470 /opt/google/chrome/chrome 1.5
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file sel-0.2.2.tar.gz
.
File metadata
- Download URL: sel-0.2.2.tar.gz
- Upload date:
- Size: 3.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 56d020115aeefb94b8aa01785b1f7628ed38e21a28422f98ef1c35369837f1f7 |
|
MD5 | d2c33409b2a22680d2b256f575ba3757 |
|
BLAKE2b-256 | ce4f344310c20050a9f4a2e4b1bfb987f6cc902cbc01d957cd2e7370553d6a2d |