Skip to content

Instantly share code, notes, and snippets.

View jikk's full-sized avatar
💭
I may be slow to respond.

Kangkook Jee jikk

💭
I may be slow to respond.
View GitHub Profile
@jikk
jikk / readLink.c
Created November 25, 2014 14:38
readlink example
@jikk
jikk / popen.c
Last active August 29, 2015 14:10
popen example
#include <stdio.h>
#include <stdlib.h>
#define READ_LINK "/home/jikk/readLink"
int main(int argc, char* argv[]) {
FILE *fpipe;
char command[256];
snprintf("%s %s %s", command, READ_LINK, argv[1], argv[2]);