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
Release history Release notifications | RSS feed
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.3.0.tar.gz
(14.6 kB
view details)
Built Distribution
File details
Details for the file quote_lines-1.3.0.tar.gz
.
File metadata
- Download URL: quote_lines-1.3.0.tar.gz
- Upload date:
- Size: 14.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e2c2a0b5cd47cc29a6f7e0031af5f9ccc38b43bf0b01dd68bd4d8a520d5fcbb2 |
|
MD5 | b030b9ce44927c0b5765a25717274a10 |
|
BLAKE2b-256 | e85e98f16ea9e2e8889c295b4217f79254c0e3f7c5407116d117b7fdc3c8db30 |
File details
Details for the file quote_lines-1.3.0-py3-none-any.whl
.
File metadata
- Download URL: quote_lines-1.3.0-py3-none-any.whl
- Upload date:
- Size: 15.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8f1d625f277a7f4aa871e49bcd6c65d1e9353a4f73edc2015dbe730ddf58709f |
|
MD5 | 705029ad396a3cbaf92761f1b54e3678 |
|
BLAKE2b-256 | a214736ca033088fe36dbe2dc0cecc0afa86df4f35ff1fdea07d147fd333618f |