Skip to content

This is a Pipe and Filter solution for the KWIC programming problem introduced by David Parnas

Notifications You must be signed in to change notification settings

kouweizhong/kwic-pipe-and-filter

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Overview

What does KWIC stand for?

Key Word In Context, basically it's a circular shifter that sorts out keywords.

How To Run

If you are using Linux, I wrote a small bash script to take care of all of the compiling and crap. I hate ANT so I made a pseudo makefile

./compile
./run

It's listening for data from STDIN and outputs to STDOUT so simple pipe redirection will work great here.

Example usage:

cat file | ./run > output

Dead simple.

About

This is a Pipe and Filter solution for the KWIC programming problem introduced by David Parnas

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • Java 94.7%
  • Shell 5.3%