Jaehui-Lee / CLI-Excel

Excel program running in CLI environment
0 stars 0 forks source link

CLI-Excel

Introduction

Excel program running in CLI environment

Member

Architecture

Group 208


Group 210


How to use

Download and Run

$ git clone https://github.com/Jaehui-Lee/CLI-Excel.git
# ubuntu
$ sudo apt-get install libncurses5-dev libncursesw5-dev
# centos
$ sudo yum -y install ncurses-devel
$ make all
$ make clean
$ ./main

If you run the program, you can choose from 4 menus


Group 164


image 48

You can create Excel to perform a variety of tasks



Group 165

Through the file manager, you can open the previously saved Excel file and continue working



image 68

Through the manual, you can get help on how to use it



End the program



Commands

Group 199

You can set 5 types of values (numbers, strings, dates, formulas including arithmetic operations, and Excel functions), and you can set multiple values as well as single values.

Setn A4:A13 10 20 30 40 50 60 70 80 90 100

Setd C1 2021-12-13

Sets F1 CLI-Excel

Sete G12 (A4+A5+A6)/A7*A8

Setf D4 SUM(A4:A13)



Group 200

You can remove the value of a specified cell, and you can remove multiple values as well as single values.

Remove A4



Group 201

you can get the actual command value stored in the cell, and you can get multiple values as well as single values.

Get D4:D9



Group 202

You can move to next, prev, n-th sheet, and also delete sheet.

Next

Prev

Delete

Goto 5



You can save the excel file you created as a txt file. Saved files can also be opened and written continuously. When creating a new Excel file for the first time, if you enter a file name, it is automatically saved every 30 seconds while working.

Save

Save filename.txt



Group 204

If you enter the data you are looking for, the stored values are searched based on text and highlighted.

Find 50



Group 203

You can sort cells in a specified range in ascending or descending order. The type of data being sorted is limited to Number.

Sort A4:A13 desc



Group 205

If you want to undo what you've done, just press Ctrl+Z and Excel will go back to its previous state. However, if you want to go back to the state before the revert after reverting Excel, just press Ctrl+C.

Ctrl+Z

Ctrl+C



You can move the Excel table by pressing the arrow keys.



History