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

  • Home
  • SEARCH
  • 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 6123235
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T15:59:30+00:00 2026-05-23T15:59:30+00:00

im trying to send a unix command from a client to a server, wait

  • 0

im trying to send a unix command from a client to a server, wait for the server to execute it then return the result to the client.

ive managed to get the connection working but i dont know how to continue. is this even the direction i should be going?

#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>

#define MAXLINE 1024

int main(void)
{
  int pfd[2], n
  pid_t pid;

  char buf[MAXLINE]
  char test[] = "pipe test\n";

  if (pipe(pfd) < 0)
    perror("pipe error");

  if ((pid = fork()) < 0)
    perror("fork error");
  else
    if (pid == 0)
    {
      close(pfd[1]);
      n = read(pfd[0], buf, MAXLINE);
      printf("read %d byte: \n", n);
      fflush(stdout);
      write(1, buf, n);
    }
    else
    {
      close(pfd[0]);
      write(pfd[1], test, sizeof(test));
    }
  exit(0);
}

help appreciated, ty
bando

  • 1 1 Answer
  • 0 Views
  • 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-23T15:59:30+00:00Added an answer on May 23, 2026 at 3:59 pm

    You want popen(3) but please be aware of the security implications of running a command on the server based on untrusted user input – this is a big No-No.

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

Sidebar

Related Questions

I'm trying to send a GET request to a App Engine server from a
I'm trying to send json string in the get request to the server, here
I am trying to send an email from a site I am building, but
I am trying to send some data from a LINQ query in C# to
I'm trying to get Python socket working as an alternative to calling the command
I´m trying to send a image through tcp to a server, firts getting the
I am trying to make a simple client-server chat program. On the client side
I'm trying to send a single image from my iPhone app to my Google
Im trying to send a mail from a asp.net script, but im getting this
im trying to send a packet from my C program to my Delphi program,

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.