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
Release files for quote-lines 1.4.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| quote_lines-1.4.0.tar.gz | 14.6 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| quote_lines-1.4.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 29.6 kB
Release files / quote_lines-1.4.0.tar.gz
| Download URL | quote_lines-1.4.0.tar.gz |
|---|---|
| Size | 14.6 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
55ae6ad324fc094bd4f2f230f1469faf9a7581bfdc8636593f2a9f6d121c4a2b
|
|
BLAKE2b-256 checksum How to use checksums |
c71faa39100a07bd651e3ce060bf51f2bee68f1e1d5ba5b531c4e601b519777e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / quote_lines-1.4.0-py3-none-any.whl
| Download URL | quote_lines-1.4.0-py3-none-any.whl |
|---|---|
| Size | 15.0 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
e1bc12ba50802d23d65c66e51ccfb301b32d490154a27d60a72df431f1163c1a
|
|
BLAKE2b-256 checksum How to use checksums |
c38a34b3ad1ec8d4fe9549d27a07c4dbdc6584eeaa77675d454124272322310b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|