diff options
Diffstat (limited to '1088/CH24/EX24.7/Result7.txt')
-rwxr-xr-x | 1088/CH24/EX24.7/Result7.txt | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/1088/CH24/EX24.7/Result7.txt b/1088/CH24/EX24.7/Result7.txt new file mode 100755 index 000000000..7c5c4bc16 --- /dev/null +++ b/1088/CH24/EX24.7/Result7.txt @@ -0,0 +1,72 @@ + ans =
+
+ 1.
+
+-->exec('Example7.sci')
+
+-->clear
+
+-->flag=1
+ flag =
+
+ 1.
+
+-->mode(-1)
+Current date is 23-Jun-2013
+
+Welcome to the Textbook Companionship Project 2013
++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
+
+ Book Title : UNIX CONCEPTS AND APPLICATIONS
+
+ Book Edition : 4
+
+ Book Author : Sumitabha Das
++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
+
+ Code Author : Pranav Bhat T
++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
+
+ Chapter Number : 24
+
+ Chapter Title : Systems programming II- Files
++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
+Example 7 : Show the effect of using the execv series
+
+ ****************************************************************
+
+ Answer :
+
+ INSTRUCTIONS :
+
+ 1.These programs are part of systems programming PURELY in Unix and the commands have NO EQUIVALENT IN SCILAB
+
+ 2.However the .c files which are displayed here are also made into a seperate file.If you are a unix user then try compiling and
+ running the programme with gcc or cc compiler
+
+ 3.The outputs displayed here are just MOCK OUTPUTS which are DISPLAYED IN THE TEXTBOOK
+
+ 4.The inconvenience is regretted.
+.............Press [ENTER] to continue..... UNIX SHELL SIMULATOR(DEMO VERSION WITH PRELOADED COMMANDS)
+
+
+
+
+$ cat execv.c # to open the file emp.lst /* Program: execv.c -- Stuffs all command line arguments to an an array to be used with execv */
+
+#include <stdio.h>
+int main(int argc, char **argv) {
+ char *cmdargs[] = { "grep", "-i", "-n", "SUMIT", "/etc/passwd", NULL };
+ execv("/bin/grep", cmdargc); /* Execute another program*/
+ printf("execv error\n");
+}
+ $ cc execv.c $ a.out 15:sumit:x:102:10::/users1/home/staff/sumit:/usr/bin/bash
+
+
+$ exit #To exit the current simulation terminal and return to Scilab console
+
+........# (hit [ENTER] for result)
+
+ BACK TO SCILAB CONSOLE...
+Loading initial environment
+-->diary(0)
|