Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alexprengere/injector
This tool converts positional data to delimited data.
https://github.com/alexprengere/injector
Last synced: about 1 month ago
JSON representation
This tool converts positional data to delimited data.
- Host: GitHub
- URL: https://github.com/alexprengere/injector
- Owner: alexprengere
- License: apache-2.0
- Created: 2012-11-24T11:18:49.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2016-09-24T07:23:18.000Z (about 8 years ago)
- Last Synced: 2024-10-12T18:57:21.185Z (2 months ago)
- Language: Python
- Homepage:
- Size: 8.79 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: LICENSE
Awesome Lists containing this project
README
========
Injector
========This tool converts positional data to delimited data.
Installation
------------You may install the tool using:
.. code-block:: bash
$ python setup install --user
Example
-------How to use:
.. code-block:: bash
$ cat example.pos
key1 name1 address1phone1
key2 name_2 address2phone__2$ head example.pos | inject - -i 7 15 23
key1 ^name1 ^address1^phone1
key2 ^name_2 ^address2^phone__2$ head example.pos | inject - -i 7 15 23 -n
key1^name1^address1^phone1
key2^name_2^address2^phone__2$ head example.pos | inject - -i 7 15 23 -n | inject - -r -i 7 15 23
key1 name1 address1phone1
key2 name_2 address2phone__2