mirror of
https://github.com/cheat/cheat.git
synced 2025-03-04 07:21:15 +01:00

- apk: Alpine Linux package manager - gcc: GNU C Compiler - grep: Pattern matcher in files or pipes - vim: Vi IMproved
9 lines
110 B
Plaintext
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
|