https://github.com/shinbatsu/sysinfo
CLI tool that grabbing computer information and displaying it
https://github.com/shinbatsu/sysinfo
cli learning-exercise sysinfo
Last synced: 9 months ago
JSON representation
CLI tool that grabbing computer information and displaying it
- Host: GitHub
- URL: https://github.com/shinbatsu/sysinfo
- Owner: Shinbatsu
- License: mit
- Created: 2025-05-10T20:49:34.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-08-20T17:13:18.000Z (10 months ago)
- Last Synced: 2025-08-20T19:29:04.594Z (10 months ago)
- Topics: cli, learning-exercise, sysinfo
- Language: C++
- Homepage:
- Size: 27.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# System Info Tool
This is a C++ command-line utility for displaying system information, similar to `htop` or `neofetch`.
It supports both normal and interactive ncurses display modes and includes some fun features like an ASCII cat.
## Features
- Display system hostname
- Display current time information
- Display CPU information
- Display RAM information
- Display network information
- Display operating system information
## Usage
```
./sys_info [-lhtcrnao]
```
### Flags
- `-h` : Display hostname
- `-t` : Display time information
- `-c` : Display CPU information
- `-r` : Display RAM information
- `-n` : Display network information
- `-o` : Display OS information
- `--help` : Print usage information
If no flags are provided, the program displays all information by default.
If `-l` is used alone, it enables ncurses mode and displays all information.