Skip to content
/ kat Public

A C++ program that provdes a single command line interface with features similar to linux: cat, grep and wc.

Notifications You must be signed in to change notification settings

khalford/kat

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

kat

A command line utility tool that combines features of common linux commands such as: cat, grep and wc.

NOTE: This is a learning and development project and is not intended to be used or actively maintained.

Written in C++ this tool is designed to provide simple file viewing without needing to pipe your output to many different commands.

Example:

# Finding all lines in a file with the phrase "yellow banana" and their line number

# With linux commands
cat sample.txt | grep -i "yellow banana" | wc -l

# With kat
kat sample.txt -c -f="yellow banana"

About

A C++ program that provdes a single command line interface with features similar to linux: cat, grep and wc.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages