https://github.com/hellebenjamin/linuxcalc
Terminal calculator for Linux
https://github.com/hellebenjamin/linuxcalc
calculator terminal-based
Last synced: over 1 year ago
JSON representation
Terminal calculator for Linux
- Host: GitHub
- URL: https://github.com/hellebenjamin/linuxcalc
- Owner: HelleBenjamin
- License: mit
- Created: 2023-09-14T19:28:04.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-03-23T17:39:24.000Z (over 2 years ago)
- Last Synced: 2025-02-02T15:56:53.860Z (over 1 year ago)
- Topics: calculator, terminal-based
- Language: C++
- Homepage:
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# LinuxCalc
LinuxCalc is a simple terminal-based calculator for Linux.
Tested on Debian
## How to install
Copy the code from below and paste it to the terminal.
```
sudo rm -rf LinuxCalc
git clone https://github.com/Pepe-57/LinuxCalc.git
cd LinuxCalc
cd Releases
mkdir build
cd build
cmake ..
make
echo 'alias linuxcalc="~/LinuxCalc/Releases/build/linuxcalc"' >> ~/.bashrc
echo 'alias lcalc="~/LinuxCalc/Releases/build/linuxcalc"' >> ~/.bashrc
```
Run the executable from the build directory.
```
./LinuxCalc
```
The command works after a reboot.
```
linuxcalc
```
or
```
lcalc
```