You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A small, cross-platform launcher written in C that automatically executes a JAR (Java archive file) with the same name as the launcher's executable. The launcher automatically reconstructs the name of the associated `.jar` file and passes the command-line arguments to Java ("java -jar jar_file").
LemonJuice is a lightweight, custom-built Unix-like shell written in C. It supports both built-in commands and external program execution using fork and execvp.
This CLI application, written in C, mimics the actual Linux shell by leveraging system functions and performs key Linux operations. Namely: cd, echo, pwd, mkdir, ls, cat, rm, and date
Custom Unix/Linux Shell, I developed as part of an Operating Systems course Assignment at IIITD. All Commands are implemented using both the fork system call and pthreads.
A Linux Mini Shell developed in C that supports built-in commands, external command execution, pipes, signal handling, and job control using Linux system calls.
OS Lab Course HW at NIT - A custom lightweight Linux shell environment that runs in an infinite loop, reads user input, handles specific built-in utilities directly, and spawns parallel child processes to handle external system programs without creating persistent zombie processes.
A modular Unix-like shell built in C using POSIX system calls, supporting command execution, I/O redirection, pipelines, background jobs, signal handling, and built-in commands.
Custom Unix/Linux Shell, I developed as part of an Operating Systems course Assignment at IIITD. All Commands are implemented using both the fork system call and pthreads.