Skip to content

Instantly share code, notes, and snippets.

@moonblade
Last active August 29, 2015 14:19
Show Gist options
  • Save moonblade/0c4e696105537dcc041d to your computer and use it in GitHub Desktop.
Save moonblade/0c4e696105537dcc041d to your computer and use it in GitHub Desktop.
compile all c files in a directory
for F in *.c; do cc $F -o ${F%.c}; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment