Show
[ grep,tail,cat ] like cli tool written in rust. Only one release as of now which does very basic function,code has been refactored where other functionalities can be added without having to change everything so will be adding more features soon.
Since there is only one release so i do not recommend expecting many things and it supports linux only as of now. This is very basic ,while i was trying one of the example of Rust's official book i got the thought of writing my own tool which does the functions similar to the linux commands such as grep,tail and cat respectively.
For installation , download this zip,extract the folder , cd into the downloaded file and run sudo ./install.sh .
I recommend copy pasting the commands given below and install directly from terminal.
wget https://github.com/sirimhrzn/show/releases/download/0.1.0/show-v0.1.0.tar.gz
Download the zip directly from terminal or you can manually download from the release page
tar -xzf show-v0.1.0.tar.gz
Optional if manually extracted
cd show-v0.1.0
Change directory to extracted folder
sudo ./install.sh
Install the application
show never -F text.txt
Test if app is installed and is working
Feel free to use it. As of now it only supports
show [QUERY] -F [FILE_PATH]
I made a release of this project with the mind of learning the basics of shell language , experience releasing builds with bash scripts which installs the application.