diff --git a/Task 6 - The PATH Environment Variable and Set-UID Programs/task6.c b/Task 6 - The PATH Environment Variable and Set-UID Programs/task6.c new file mode 100644 index 0000000000000000000000000000000000000000..83df4fa8dfec8cde1cfedd61a0dad71c82f4df84 --- /dev/null +++ b/Task 6 - The PATH Environment Variable and Set-UID Programs/task6.c @@ -0,0 +1,6 @@ +#include <stdlib.h> +int main() +{ + system("ls"); + return 0; +}