[CRIU] [PATCH] crit: add a `show` option for human consumption

Ruslan Kuprieiev kupruser at gmail.com
Wed Jul 22 09:04:34 PDT 2015


On 07/22/2015 07:01 PM, Ruslan Kuprieiev wrote:
> But how about dropping -i option for it?
>
> On 07/22/2015 06:55 PM, Tycho Andersen wrote:
>> This saves some keystrokes and is equivalent to decode --pretty.
>>
>> Signed-off-by: Tycho Andersen <tycho.andersen at canonical.com>
>> ---
>>   crit | 6 ++++++
>>   1 file changed, 6 insertions(+)
>>
>> diff --git a/crit b/crit
>> index 350362c..ba586fa 100755
>> --- a/crit
>> +++ b/crit
>> @@ -73,6 +73,12 @@ def main():
>>               help = 'where to put criu image in binary format 
>> (stdout by default)')
>>       encode_parser.set_defaults(func=encode)
>>   +    # Show
>> +    show_parser = subparsers.add_parser('show',
>> +            help = "convert criu image from binary to human-readable 
>> json")

And it would also be nice to tell in the description that show is the 
same as decode --pretty -i.

>> +    show_parser.add_argument("in")
>> +    show_parser.set_defaults(func=decode, pretty=True, out=None)
>> +
>>       opts = vars(parser.parse_args())
>>         opts["func"](opts)
>



More information about the CRIU mailing list