The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > High Level Programming
Google UNIX.COM


High Level Programming Post questions about C, C++, Java, SQL, and other programming languages here.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
how to get source code of Unix commands? jagdish.machhi@ Linux 4 08-10-2007 07:44 AM
need help with some commands please mujtba UNIX for Dummies Questions & Answers 2 01-14-2005 11:49 AM
commands kironpmullamkuz Security 2 06-27-2002 08:45 PM
commands Special K UNIX for Dummies Questions & Answers 3 02-12-2002 11:27 PM

Reply
 
Submit Tools LinkBack Thread Tools Search this Thread Display Modes
  #1  
Old 01-21-2007
Registered User
 

Join Date: Jan 2007
Location: India
Posts: 3
code that reads commands from the standard i/p and executes the commands

Hello all,
i've written a small piece of code that will read commands from standard input and executes the commands.
Its working fine and is execting the commands well. Accepting arguments too. e.g
#mkdir <name of the directory>

The problem is that its not letting me change the directory i.e pwd is remaining the same.
what changes should be made in it to let it change the directories too.

Code:
#include <stdio.h>
#include <string.h>
#define MAXLINE 50

int main(void)
{
        char buf[MAXLINE];

        printf("%% ");
        while (fgets(buf, MAXLINE, stdin) != NULL)
        {
                buf[strlen(buf) -1] = 0;
                system(buf);
                printf("%% ");
        }
}
regards
Reply With Quote
Forum Sponsor
  #2  
Old 01-21-2007
reborg's Avatar
Administrator
 

Join Date: Mar 2005
Location: Ireland
Posts: 3,644
I don't think you have fully understood what your own code is doing, with respect to the context in which it is executing commands relative to the shell in which it is invoked.
Reply With Quote
  #3  
Old 01-21-2007
Registered User
 

Join Date: Jan 2007
Location: India
Posts: 3
Quote:
Originally Posted by reborg
I don't think you have fully understood what your own code is doing, with respect to the context in which it is executing commands relative to the shell in which it is invoked.
sorry to say that i'm still not clear...
Reply With Quote
  #4  
Old 01-21-2007
reborg's Avatar
Administrator
 

Join Date: Mar 2005
Location: Ireland
Posts: 3,644
I'm saying this in simplistic terms but here is what happens in terms of processes:

Code:
   your shell
       +
       |
       +------Your application
                         +
                         |
                         +-------The command your program runs
If you make a change in the bootom node in this list it has no effect on the ones above it. You cannot chdir in the parent from a within a child.
Reply With Quote
  #5  
Old 01-21-2007
Registered User
 

Join Date: Jan 2007
Location: India
Posts: 3
okay...

thanks.
Reply With Quote
Google The UNIX and Linux Forums
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes




All times are GMT -7. The time now is 02:36 AM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited.
The UNIX and Linux Forums Content Copyright ©1993-2008. All Rights Reserved.Ad Management by RedTyger Visit The Complex Event Processing Blog

Content Relevant URLs by vBSEO 3.2.0