-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement more utility commands like cat, mkdir etc... #14
Comments
I will give a shot at |
@octetd actually I added a basic The current |
I will hold on until you push that then and give priority to #15
‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
…On Sunday, December 20th, 2020 at 07:17, Johan Manuel ***@***.***> wrote:
***@***.***(https://github.com/octetd) actually I added a basic cat a few commits ago, but it doesn't support multiple files, e.g. cat file1 file2, maybe you could add that? As for rm I added an unlink program that literally just calls unlink (the system call), but It'd be cool to have a more proper rm, with support for its -r option.
The current unlink system call won't delete folders though, not even empty ones. I'll add an rmdir syscall, you can assume you have it (from unistd.h, see man 3 rmdir) in the mean time if you start before I push it.
—
You are receiving this because you were mentioned.
Reply to this email directly, [view it on GitHub](#14 (comment)), or [unsubscribe](https://github.com/notifications/unsubscribe-auth/ABD5R2WYCZMKE55UQWX2CKLSVXFNNANCNFSM4T6R3VOA).
|
I will try implementing cd. |
Excellent, let me know if I can help with anything. |
On top of my head, the following are missing and could be implemented with the functions available in the libc right now:
test.c
, but not in a useful form)The text was updated successfully, but these errors were encountered: