Home > Software design >  Light Table Editor
Light Table Editor

Time:12-29

I'm looking for a Linux light editor for tabular data. I don't need full spreadsheet functionality, just something to edit tabular data and which requires minimal resources.

  • should ideally support CSV and/or ODS (libreoffice calc).
  • as light as possible. A terminal (aka commandline/text/prompt) app is fine. It should display a table/spreadsheet as in a GUI spreadsheet (e.g. using ncurses).
  • simple to use & navigate.

This discussion is related but I didn't find anything suitable: https://t.ly/RNiI

Thanks

CodePudding user response:

csvtool is life saver when we working with only command line interfaces

csvtool

Also you can use Ods2csv,it is a command-line tool that converts ODS (LibreOffice Calc) files to CSV format.

 ods2csv

CodePudding user response:

A great tool could be visidata https://www.visidata.org/

  • Related