File: info_main_cmdline.yaggo

package info (click to toggle)
jellyfish 2.1.4-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,992 kB
  • ctags: 7,766
  • sloc: cpp: 35,036; ruby: 523; sh: 433; makefile: 257; python: 116; perl: 15
file content (23 lines) | stat: -rw-r--r-- 639 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
purpose "Display information about a jellyfish file"
package "jellyfish info"

description "
This command shows some information about how this jellyfish output
file was created. Without any argument, it displays the command line
used, when and where it was run.
"

option("s", "skip") {
  description "Skip header and dump remainder of file"
  off }
option("j", "json") {
  description "Dump full header in JSON format"
  off 
  conflict "skip" }
option("c", "cmd") {
  description "Display only the command line"
  off
  conflict "skip", "json" }
arg("file") {
  description "Input file in jellyfish format"
  c_string; typestr "path" }