Skip to content

Example of how to build a Java command line tool that utilizes the Unix pipe system.

Notifications You must be signed in to change notification settings

betrcode/java-pipe-example

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 

Repository files navigation

Example of Java command line app using pipes

Need to build your own command line tools? Make them utilize the Unix pipes. Don't read directly from files, there are other tools that can do that better.

If you make your tool read from Unix pipes, you can compose it with other command line tools.

Example usage

List all files in your home folder, process them with your tool and sort the output

ls ~ | java -cp out/production/java-pipe-example/ se.bettercode.Main | sort

Note: Your classpath (cp) might be different. It should point out the location of the Main.class file.

About

Example of how to build a Java command line tool that utilizes the Unix pipe system.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages