Using Python as awk alternative
Project description
awpie
Using Python as awk alternative.
Installation
$ pip install awpie
Usage
Upper case all inputs:
$ printf 'apple\norange\n' | awpie 'print(line.upper())'
APPLE
ORANGE
Change orange to banana:
$ printf 'apple\norange\n' | awpie 'print(line) if line != "orange" else print("banana")'
apple
banana
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
awpie-0.2.0.tar.gz
(2.1 kB
view hashes)
Built Distribution
awpie-0.2.0-py3-none-any.whl
(2.6 kB
view hashes)