diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1088/CH23/EX23.9 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1088/CH23/EX23.9')
-rwxr-xr-x | 1088/CH23/EX23.9/Example9.sce | 80 | ||||
-rwxr-xr-x | 1088/CH23/EX23.9/Result9.txt | 108 |
2 files changed, 188 insertions, 0 deletions
diff --git a/1088/CH23/EX23.9/Example9.sce b/1088/CH23/EX23.9/Example9.sce new file mode 100755 index 000000000..412f71a70 --- /dev/null +++ b/1088/CH23/EX23.9/Example9.sce @@ -0,0 +1,80 @@ +clear +flag=1 +mode(-1) +clc + +printf("Example 9 : Show the method of using lstatcall and struct stat to display file attributes\n") +disp("****************************************************************") +disp("Answer : ") +disp("INSTRUCTIONS : ") +halt(' ') +disp("1.These programs are part of systems programming in Unix and the commands have NO EQUIVALENT IN SCILAB") +halt(' ') +disp('2.However if possible some selected programmes have been TRIED TO BE IMPLEMENTED') +halt("") +disp('3.For most of the programmes whose equivalent is NOT THERE IN SCILAB,only the output has been printed as given in the textbook with no interactive input as in the programme below') +halt("") +disp("4.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") +disp("5.The inconvenience is regretted.") +halt('.............Press [ENTER] to continue.....') +halt("") +clc +printf("\tUNIX SHELL SIMULATOR(DEMO VERSION WITH PRELOADED COMMANDS)\n\n\n") +i=0 +i=i+1;f(i)='/* Program: attributes.c -- Uses lstat call and struct stat to display file attributes */' +i=i+1;f(i)='#include <stdio.h>' +i=i+1;f(i)='#include <sys/stath>' +i=i+1;f(i)='' +i=i+1;f(i)='void quit(char *,int);' +i=i+1;f(i)='' +i=i+1;f(i)='int main(int argc, char**argv) {' +i=i+1;f(i)=' struct stat statbuf; /*We'+ascii(39)+'ll use lstat to populate this*/' +i=i+1;f(i)=' ' +i=i+1;f(i)=' if (lstat(argv[1], &statbuf) == -1)' +i=i+1;f(i)=' quit('+ascii(34)+'Couldn'+ascii(39)+'t stat file'+ascii(34)+', 1);' +i=i+1;f(i)=' ' +i=i+1;f(i)=' printf('+ascii(34)+'File: %s\n'+ascii(34)+',argv[1]);' +i=i+1;f(i)=' printf('+ascii(34)+'Inode number: %d \n'+ascii(34)+',statbuf.st_ino);' +i=i+1;f(i)=' printf('+ascii(34)+'UID: %d '+ascii(34)+',statbuf.st_uid);' +i=i+1;f(i)=' printf('+ascii(34)+'GID: %d \n'+ascii(34)+',statbuf.st_gid);' +i=i+1;f(i)=' printf('+ascii(34)+'Types and Permissions: %o\n'+ascii(34)+',statbuf.st_mode);' +i=i+1;f(i)=' printf('+ascii(34)+'Number of links: %d \n'+ascii(34)+',statbuf.st_nlink);' +i=i+1;f(i)=' printf('+ascii(34)+'Size in bytes: %d\n'+ascii(34)+',statbuf.st_size);' +i=i+1;f(i)=' printf('+ascii(34)+'Blocks allocated: %d\n'+ascii(34)+',statbuf.st_blocks);' +i=i+1;f(i)=' printf('+ascii(34)+'Last Modification Time: %s\n'+ascii(34)+',ctime(&statbuf.st_mtime));' +i=i+1;f(i)=' printf('+ascii(34)+'Last Access Time: %s\n'+ascii(34)+',ctime(&statbuf.st_atime));' +i=i+1;f(i)=' exit(0);' +i=i+1;f(i)='}' +n=i +printf("\n\n$ cat attributes.c # to open the file emp.lst") +halt(' ') +u=mopen('attributes.c','wt') +for i=1:n + mfprintf(u,"%s\n",f(i)) + printf("%s\n",f(i)) +end +mclose(u) +halt('') +clc + +halt(' ') + printf("$ cc dir.c") + halt(' ') + disp("") +printf("\nHere it displays a mock value since it is windows\n\n") +if getos()=='Windows' then + printf("\n$ a.out /etc/passwd\nFile: /etc/passwd\nInode number: 54412\nUID: 0 GID: 3\nType and Permissions: 100755\nNumber of links: 1") +printf("\nSize in bytes: 10803\nBlocks allocated: 22\nLast Modification Time: Tue Nov 19 16:29:13 2002\nLast Access Time: Tue NOv 26 19:57:01 2002\n") +else + printf("$ a.out /etc/passwd") + unix_w('cc attributes.c;a.out /etc/passwd') +end +halt(' ') +printf("\n\n\n$ exit #To exit the current simulation terminal and return to Scilab console\n\n") +halt("........# (hit [ENTER] for result)") +//clc() + +printf("\n\n\t\t\tBACK TO SCILAB CONSOLE...\nLoading initial environment') +sleep(1000) + + diff --git a/1088/CH23/EX23.9/Result9.txt b/1088/CH23/EX23.9/Result9.txt new file mode 100755 index 000000000..fda181567 --- /dev/null +++ b/1088/CH23/EX23.9/Result9.txt @@ -0,0 +1,108 @@ + ans =
+
+ 1.
+
+-->exec('Example9.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 : 23
+
+ Chapter Title : Systems programming I- Files
++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
+Example 9 : Show the method of using lstatcall and struct stat to display file attributes
+
+ ****************************************************************
+
+ Answer :
+
+ INSTRUCTIONS :
+
+ 1.These programs are part of systems programming in Unix and the commands have NO EQUIVALENT IN SCILAB
+
+ 2.However if possible some selected programmes have been TRIED TO BE IMPLEMENTED
+
+ 3.For most of the programmes whose equivalent is NOT THERE IN SCILAB,only the output has been printed as given in the textbook w
+ ith no interactive input as in the programme below
+
+ 4.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
+
+ 5.The inconvenience is regretted.
+.............Press [ENTER] to continue..... UNIX SHELL SIMULATOR(DEMO VERSION WITH PRELOADED COMMANDS)
+
+
+
+
+$ cat attributes.c # to open the file emp.lst /* Program: attributes.c -- Uses lstat call and struct stat to display file attributes */
+#include <stdio.h>
+#include <sys/stath>
+
+void quit(char *,int);
+
+int main(int argc, char**argv) {
+ struct stat statbuf; /*We'll use lstat to populate this*/
+
+ if (lstat(argv[1], &statbuf) == -1)
+ quit("Couldn't stat file", 1);
+
+ printf("File: %s\n",argv[1]);
+ printf("Inode number: %d \n",statbuf.st_ino);
+ printf("UID: %d ",statbuf.st_uid);
+ printf("GID: %d \n",statbuf.st_gid);
+ printf("Types and Permissions: %o\n",statbuf.st_mode);
+ printf("Number of links: %d \n",statbuf.st_nlink);
+ printf("Size in bytes: %d\n",statbuf.st_size);
+ printf("Blocks allocated: %d\n",statbuf.st_blocks);
+ printf("Last Modification Time: %s\n",ctime(&statbuf.st_mtime));
+ printf("Last Access Time: %s\n",ctime(&statbuf.st_atime));
+ exit(0);
+}
+ $ cc dir.c
+
+
+Here it displays a mock value since it is windows
+
+
+$ a.out /etc/passwd
+File: /etc/passwd
+Inode number: 54412
+UID: 0 GID: 3
+Type and Permissions: 100755
+Number of links: 1
+Size in bytes: 10803
+Blocks allocated: 22
+Last Modification Time: Tue Nov 19 16:29:13 2002
+Last Access Time: Tue NOv 26 19:57:01 2002
+
+
+
+$ 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)
|