Skip to main content

A tiny CLI used for quoting input lines

Project description

quote

A tiny CLI used for quoting input lines

Example

Consider the directory:

$ find .
.
./c
./a b

Here, xargs alone will fail if we do: find . -type f | xargs cat with:

This file is named: c
cat: ./a: No such file or directory
cat: b: No such file or directory

This is because the file 'a b' is not quoted!

Instead we can do: find . -type f | quote | xargs cat and we will get:

This file is named: c
This file is named: a b

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

quote_lines-1.1.2.tar.gz (14.6 kB view hashes)

Uploaded Source

Built Distribution

quote_lines-1.1.2-py3-none-any.whl (15.0 kB view hashes)

Uploaded Python 3

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