Tagged Questions
2
votes
3answers
175 views
Keeping program GUI front-end and CLI functionality separate
In Linux a lot of programs have a CLI version and a GUI front-end. I read somewhere that this follows the linux philosophy and is good practice. Of course it's true from a developers perspective to ...
3
votes
2answers
1k views
Implementing a Unix shell in C: Logging
I am currently working on implementing my own UNIX shell in C. The basis of the shell is working, you could find the source code here.
Right now my next task is to implement a logging feature for the ...