Skip to main content

prs is a utility that allows you to use Python list comprehensions in shell commands.

Project description

prs

prs is a small utility that lets you pipe things to Python and process them in a list comprehension.

If you've ever wished you could manipulate items in your shell with a Python list comprehension, prs is for you.

Installation

Just pip install prs.

Usage

prs is simple. You pipe stuff into it from the shell, it exposes whatever is piped as a list called i (without final newlines) to a script, and expects the script to return either a string or an iterable to a variable called o. That variable is then printed to stdout, so you can pipe it to sh for execution.

$ ls -1
LICENSE
prs/
README.md
setup.cfg
setup.py

$ ls -1 | prs "o = [l.lower() for l in i]"
license
prs
readme.md
setup.cfg
setup.py

Multiple lines can be separated by a semicolon.

Various libraries are already imported (but feel free to import your own):

  • os
  • sys
  • pathlib.Path

Examples

Note: The examples here won't actually run the commands, they will just display them so you can see what will actually run. To run the commands for real, just append | sh to each example.

Append .bak to all files in the current directory:

$ ls -1 | prs "o = ['mv {} {}.bak'.format(l, l) for l in i if Path(l).is_file()]"
mv LICENSE LICENSE.bak
mv README.md README.md.bak
mv setup.cfg setup.cfg.bak
mv setup.py setup.py.bak

Concatenate all entries into one:

02:28:39 $ ls -1 | prs "o = 'touch ' + ' '.join(i)"
touch LICENSE prs README.md setup.cfg setup.py

Completely ignore all input:

02:29:35 $ ls -1 | prs "o = 'hi'"
hi

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

prs-0.0.5.tar.gz (3.0 kB view details)

Uploaded Source

Built Distribution

prs-0.0.5-py3-none-any.whl (3.1 kB view details)

Uploaded Python 3

File details

Details for the file prs-0.0.5.tar.gz.

File metadata

  • Download URL: prs-0.0.5.tar.gz
  • Upload date:
  • Size: 3.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for prs-0.0.5.tar.gz
Algorithm Hash digest
SHA256 7e3463461c3f97a35c26381d0c2d6f279f2320a8fef63263776fc8a1c7be4d4c
MD5 9d7f13baa71e32014f9b60db6b0b4afd
BLAKE2b-256 cafa9c0fa312825916d7654a15ecf6803c1f717046c888c9cb5292acbe2e324d

See more details on using hashes here.

File details

Details for the file prs-0.0.5-py3-none-any.whl.

File metadata

File hashes

Hashes for prs-0.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 b4158505d421008c707b6e7300cb8da0d7f8ca7a9f601e1147638e14196817c7
MD5 17ceef3321d1d35992c71a9b341d60b0
BLAKE2b-256 d7ed9025d6e473f3ddfab2a64e0bd0fd38c3e2729032c3afb6d7a46f05be8ba6

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page