Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 427051
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T19:32:28+00:00 2026-05-12T19:32:28+00:00

I want to make some C++ program and I’m using function popen here to

  • 0

I want to make some C++ program and I’m using function popen here to send commands to command line in Unix. It works fine, but when I call cd directory, the directory doesn’t change. I thing that it’s same when I try to run cd directory in some script, after finishing script directory path change back. So, scripts I must run like . ./script.sh not ./sript.sh, but how to do that with popen function? I have tried to add ". " before first argument of popen, but running ". ls" makes error.

Code:

cout << "@ Command from " << session->target().full() << ": " << message.body() << endl;
//cout << "Prisla zprava" << endl;
//m_session->send( "Hello World", "No Subject" );
//system( message.body().c_str() );
//if ( message.body() == "" )
FILE* outp;
char buffer[100];
string outps = "";
outp = popen( message.body().c_str(), "r" );
while ( !feof(outp) )
{
    fgets( buffer, 100, outp );
    outps = outps + buffer;
}
pclose(outp);
cout << "& Output from command: " << outps << endl;
m_session->send( outps.c_str(), "Output" );

In message.body(); is string which I want to run (I’m receiving this from XMPP). When the string is for example "ls", it returns string with list of files in actual directory. But when the message is "cd directory", nothing happens, like trying to change directory in scripts.

  • 1 1 Answer
  • 1 View
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T19:32:28+00:00Added an answer on May 12, 2026 at 7:32 pm

    Typically, the way the popen() command executes the command is via the shell. So, it opens a pipe, and forks. The child does some plumbing (connecting the pipe to the standard input or standard output – depending on the flag) and then executes

    execl("/bin/sh", "/bin/sh", "-c", "what you said", (char *)0);
    

    So, how it all behaves is going to depend on your key environment variables – notably PATH.

    If you want to execute a script in the current directory, then one of these options:

    outp = popen("./script.sh", "r");
    outp = popen("sh -x ./script.sh", "r");
    outp = popen("sh -c './script.sh arg1 arg2'", "r");
    

    If you want to execute the ‘ls‘ command:

    outp = popen("/bin/ls /the/directory", "r");
    

    And if you want to change directory before running something:

    outp = popen("cd /somewhere/else; ./script", "r");
    

    And so on…

    If you want to change the directory of the program that is using popen(), then you need to use the ‘chdir()’ system call (or possibly fchdir()). If you think you might want to get back to where you started, use:

    int fd = open(".", O_RDONLY);
    chdir("/some/where/else");
    ...do stuff in new directory
    fchdir(fd);
    

    (Clearly, you need some error checking in that lot.)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I make a bot program and i want to send some keyboard keys between
I want to make some GUI mockup program for video player, so my idea
I want to make a program that will read some number in string format
Basically I want to make simple toggle program (that will be mapped to some
I want to make some design tweaks. Here is the code for html: <div
I want to make some API calls to a server using HttpURLConnection . But
I want to make some printf's to the windows console from my C program
I have a huge line-separated text file and I want to make some calculations
I want to modify a C program to make some of the files it
I want to make some tuning for multithreaded program. If I know how much

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.