Skip to content

A program that can pipe different unix Unix commands with arguments together

Notifications You must be signed in to change notification settings

AcademicianZakharov/Unix-Command-Piper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 

Repository files navigation

Unix-Command-Piper

A program that can pipe different unix Unix commands with arguments together
example for:
gcc --help | grep dump | tr ’[:lower:]’ ’[:upper:]’ | sort

enter:
/usr/bin/gcc --help
/usr/bin/grep dump
/usr/bin/tr ’[:lower:]’ ’[:upper:]’
/usr/bin/sort

will output:
-DUMPMACHINE DISPLAY THE COMPILER'S TARGET PROCESSOR.
-DUMPSPECS DISPLAY ALL OF THE BUILT IN SPEC STRINGS.
-DUMPVERSION DISPLAY THE VERSION OF THE COMPILER.

compile like so:
gcc -Wall -Werror -std=c18 -o pipe pipe.c

About

A program that can pipe different unix Unix commands with arguments together

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages