Εκτέλεση και σύνδεση του μεταγλωττιστή

Η εκτέλεση του μεταγλωττιστή της Aegean C (ac) μπορεί να γίνει με την παρακάτω διαδικασία:
# Compile the source file lander.a to assembly file lander.s
ac <lander.a >lander.s
# Assemble lander.s; compile and link-in the Aegean runtime library (aegean.c)
cc -o lander lander.s aegean.c
Μπορεί ακόμα να αυτοματοποιηθεί με το παρακάτω Bourne shell script:
#!/bin/sh

# Names for the library and the compiler driver
LIB=aegean.c
COMP=acd

if [ "$1" = '' ]
then
        echo "Usage: $0 basename (e.g. $0 lander)" 1>&2
        echo "Will compile basename.a to basename via basename.s" 1>&2
        exit 1
fi
$COMP <$1.a >$1.s
cc -i $1 $1.s $LIB