summaryrefslogtreecommitdiffstats
path: root/office/x_x/x_x.rst
blob: 8ff6e18a9ba0e5b2658dd9ad696755d9a67f63dd (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
.. RST source for x_x(1) man page. Convert with:
..   rst2man.py x_x.rst > x_x.1
.. rst2man.py comes from the SBo development/docutils package.

.. |version| replace:: 20150330_d236f8f
.. |date| date::

.. converting from pod:
.. s/B<\([^>]*\)>/**\1**/g
.. s/I<\([^>]*\)>/*\1*/g

===
x_x
===

-----------------------------------------
display Excel and CSV files on a terminal
-----------------------------------------

:Manual section: 1
:Manual group: SlackBuilds.org
:Date: |date|
:Version: |version|

SYNOPSIS
========

x_x [**-h** *row*] [**-f** *csv|excel*] [**-d** *delimiter*] [**-q** *quotechar*] [**-e** *encoding*]

DESCRIPTION
===========

x_x (the Dead Guy CLI) is a command line reader that displays either
Excel files or CSVs in your terminal. The purpose of this is to not
break the workflow of people who live on the command line and need to
access a spreadsheet generated using Microsoft Excel.

OPTIONS
=======

**-h**, **--heading** *row*
  Row number containing the headings (default: none). Note: the first row is
  numbered 0, not 1!

**-f**, **--file-type** *csv|excel*
  Override autodetection of input file type.

**-d**, **--delimiter** *character*
  Delimiter (only applicable to CSV files) [default: ','].

**-q**, **--quotechar**
  Quote character (only applicable to CSV files) [default: '"'].

**-e**, **--encoding** *encoding*
  Encoding [default: UTF-8].

**--version**
  Show the version and exit.

**--help**
  Show built-in help and exit.

EXAMPLES
========

So, for example:

::

  $ x_x dead_guys.xlsx
  +---------------+--------------+
  | A             | B            |
  +---------------+--------------+
  | Person        | Age at Death |
  | Harrold Holt  | 59.0         |
  | Harry Houdini | 52.0         |
  | Howard Hughes | 70.0         |

Or to specify a specific row as the header which will be visible on each page:

::

  $ x_x -h 0 dead_guys.xlsx
  +---------------+--------------+
  | Person        | Age at Death |
  +---------------+--------------+
  | Harrold Holt  | 59.0         |
  | Harry Houdini | 52.0         |
  | Howard Hughes | 70.0         |

Weird CSVs? No problem!

::

    $ cat dead_guys.csv
    person;age_at_death
    Harrold Holt;59
    Harry Houdini;52
    Howard Hughes;70
    |Not some guy, but just a string with ; in it|;0

::

    $ x_x -h 0 --delimiter=';' --quotechar='|' dead_guys.csv
    +----------------------------------------------+--------------+
    | person                                       | age_at_death |
    +----------------------------------------------+--------------+
    | Harrold Holt                                 | 59           |
    | Harry Houdini                                | 52           |
    | Howard Hughes                                | 70           |
    | Not some guy, but just a string with ; in it | 0            |

Does your CSV file not end in "csv"? Again, no problem:

::

    $ mv dead_guys.csv dead_guys.some_other_extension
    $ x_x -h 0 --file-type=csv --delimiter=';' --quotechar='|' dead_guys.some_other_extension
    +----------------------------------------------+--------------+
    | person                                       | age_at_death |
    +----------------------------------------------+--------------+
    | Harrold Holt                                 | 59           |
    | Harry Houdini                                | 52           |
    | Howard Hughes                                | 70           |
    | Not some guy, but just a string with ; in it | 0            |

COPYRIGHT
=========

See the file /usr/doc/x_x-|version|/LICENSE for license information.

AUTHORS
=======

x_x was written by krockode.

This man page written for the SlackBuilds.org project
by B. Watson, and is licensed under the WTFPL.

SEE ALSO
========

The x_x homepage: https://github.com/krockode/x_x