mirror of
https://github.com/cheat/cheat.git
synced 2024-11-13 23:51:09 +01:00
84b5df508b
- apk: Alpine Linux package manager - gcc: GNU C Compiler - grep: Pattern matcher in files or pipes - vim: Vi IMproved
8 lines
110 B
Text
8 lines
110 B
Text
# Compile a file
|
|
gcc file.c
|
|
|
|
# Compile a file with a custom output
|
|
gcc -o file file.c
|
|
|
|
# Debug symbols
|
|
gcc -g
|