sheetsui/README.md

50 lines
913 B
Markdown
Raw Normal View History

2024-11-30 09:27:03 -05:00
# SheetsUI - a console based spreadsheet application
## Installing
### Nix Flake
```sh
nix profile install github:zaphar/sheetsui
```
### Cargo
```sh
cargo install --git https://github.com/zaphar/sheetsui --locked
2024-11-30 09:27:03 -05:00
```
## Running
```sh
sheetui --help #print the help text for the cli
Usage: sheetui [OPTIONS] <WORKBOOK>
Arguments:
<WORKBOOK>
Options:
-l, --locale-name <LOCALE_NAME> [default: en]
-t, --timezone-name <TIMEZONE_NAME> [default: America/New_York]
-h, --help Print help
-V, --version Print version
```
```sh
sheetui path/to/file.xlsx # edit/view a spreadsheet
```
2024-11-30 19:07:00 -05:00
### Supported files
Currently we only support the [ironcalc](https://docs.ironcalc.com/) xlsx
features for spreadsheet. CSV import and expor are planned.
### Screenshot
2024-11-30 19:07:00 -05:00
<img src="./assets/screenshot.png" />
## Reference
* [Documentation](./docs/index.md)