cheat-fork-echo/cheatsheets/gcc
Sam Dodrill 84b5df508b Cheatsheets added
- apk: Alpine Linux package manager
 - gcc: GNU C Compiler
 - grep: Pattern matcher in files or pipes
 - vim: Vi IMproved
2013-08-28 10:05:46 -07:00

9 lines
110 B
Plaintext

# Compile a file
gcc file.c
# Compile a file with a custom output
gcc -o file file.c
# Debug symbols
gcc -g