Skip to content

Instantly share code, notes, and snippets.

@penguin2716
Created May 8, 2014 03:05
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save penguin2716/564ee6a243efdfb885ae to your computer and use it in GitHub Desktop.
Save penguin2716/564ee6a243efdfb885ae to your computer and use it in GitHub Desktop.
"Hello, world!"と出力するシェルスクリプト
#!/bin/bash
cat <<EOF > hello.c
#include <stdio.h>
int main(void) {
printf("Hello, world!\n");
return 0;
}
EOF
gcc -o hello hello.c
./hello
rm -f hello hello.c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment