Answered step by step
Verified Expert Solution
Question
1 Approved Answer
2 . 4 Task 4 : Environment Variables and system ( ) In this task, we study how environment variables are affected when a new
Task : Environment Variables and system
In this task, we study how environment variables are affected when a new program is executed via the
system function. This function is used to execute a command, but unlike execve which di
rectly executes a command, system actually executes binshc command", ie it executes
binsh and asks the shell to execute the command.
If you look at the implementation of the system function, you will see that it uses execl to
execute binsh; execl calls execve passing to it the environment variables array. Therefore,
using system the environment variables of the calling process is passed to the new program binsh
Please compile and run the following program to verify this.
#include
#include
int main
systemusrbinenv;
return ;
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started