I mean, I’d like my programs to be reusable later, like the Unix utilities (by using pipes, for example)
If there isn’t any, can you give me some tips?
Thank you
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Standard unix command line utilities are “simple”, in that they accept some input, do some processing, then produce output. As long as your utilities can read from stdin (input) and write output to stdout, they can be chained together with pipes.