#!/bin/sh
cat > test.c <<EOF
#include <stdio.h>
#include <stdlib.h>

int main(int argc, char *argv[])
{
        fprintf(stdout, "hello\n");
}
EOF
gcc -fPIE -pie -o test test.c
/lib64/ld-linux-x86-64.so.2 ./test
