# fip A Simple Command Line **Fi**eld **P**arser, roughly emulating `awk '{print $}'`. Accepts input from StdIn, produces output to StdOut. Field Number is 0-indexed. See `fip --help` for more details. ## Installation `cargo install fip` or download from the [releases pagge](https://gitlab.com/Bruschkov/fip-rust/-/releases) ## Examples * Get Process IDs from ps aux: `ps aux | fip 1` * Get the values of the third field from a .csv-file: `fip -s, 2 < file.csv`