2017-07-15 19:27:36 +02:00
|
|
|
# SYNOPSIS
|
|
|
|
|
|
|
|
Simple wrapper for `crypt` script from Bash-Snippets.
|
|
|
|
|
|
|
|
|
|
|
|
# INSTALL
|
|
|
|
|
|
|
|
$ sparrow plg install crypt
|
|
|
|
|
|
|
|
# USAGE
|
|
|
|
|
|
|
|
Basic usage:
|
|
|
|
|
|
|
|
$ sparrow plg run crypt -- <args>
|
|
|
|
|
2017-07-17 19:42:32 +02:00
|
|
|
Run as sparrow task:
|
2017-07-15 19:27:36 +02:00
|
|
|
|
|
|
|
$ sparrow project create utils
|
|
|
|
|
2017-07-17 19:42:32 +02:00
|
|
|
$ sparrow task add utils enc-file crypt
|
2017-07-15 19:27:36 +02:00
|
|
|
|
2017-07-17 19:42:32 +02:00
|
|
|
$ sparrow task ini utils/enc-file
|
2017-07-15 19:27:36 +02:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
args:
|
2017-07-17 19:42:32 +02:00
|
|
|
- '-e'
|
|
|
|
- /tmp/file.txt
|
|
|
|
- /tmp/file.txt.inc
|
|
|
|
|
|
|
|
$ sparrow task run utils/enc-file
|
2017-07-15 19:27:36 +02:00
|
|
|
|
2017-07-17 19:42:32 +02:00
|
|
|
For crypt's arguments description follow [https://github.com/alexanderepstein/Bash-Snippets#cheat](https://github.com/alexanderepstein/Bash-Snippets#crypt)
|
2017-07-15 19:27:36 +02:00
|
|
|
|
2017-07-17 19:42:32 +02:00
|
|
|
# Authors
|
2017-07-15 19:27:36 +02:00
|
|
|
|
|
|
|
* The author of main script is [Alex Epstein](https://github.com/alexanderepstein)
|
|
|
|
|
|
|
|
* The plugin maintainer is [Alexey Melezhik](https://github.com/melezhik/)
|
|
|
|
|
|
|
|
|
|
|
|
|