summaryrefslogtreecommitdiff
path: root/shelter.c
blob: e8bdf9fdc34dabac6f02aed29ec32450fab984a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include <stdio.h>
#include <sys/wait.h>
#include <unistd.h>


int main()
{
    int p[2];
    pid_t pid;
    pipe(p);
    pid = fork();
    if (pid == -1) {
        return 1;
    } else if (pid) {
        int c;
        close(p[0]);
        write(p[1], "echo -n \"", 6);
        while ((c = getchar()) != EOF) {
            write(p[1], &c, 1);
        }
        write(p[1], "\"", 1);
        close(p[1]);
        wait(0);
    } else {
        close(p[1]);
        dup2(p[0], 0);
        close(p[0]);
        execl("/bin/sh", "/bin/sh", 0);
    }
    return 0;
}