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.1.tar.gz
(14.6 kB
view details)
Built Distribution
File details
Details for the file quote_lines-1.3.1.tar.gz
.
File metadata
- Download URL: quote_lines-1.3.1.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 | f0c782bd1aef2dc1d9b982a137084ae781cf6f6851706b6dcb66f8d3be611f81 |
|
MD5 | 03104b9396c259a7a7a3db89138030ef |
|
BLAKE2b-256 | 06e40423b131e52baeb279ed44941fff696e0118cb261ce081f3e86ee0ed3f27 |
File details
Details for the file quote_lines-1.3.1-py3-none-any.whl
.
File metadata
- Download URL: quote_lines-1.3.1-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 | 134b7150d245f0452628573c42fcf8ff788022c3320cd2993b7d3f2054ff2c5a |
|
MD5 | d27898af3514e21c0e0246d13d518557 |
|
BLAKE2b-256 | 8f14b82944621e6fcaa5aac835d53ac64250cbc53b5b29911030f61502158397 |