#!/bin/sh echo "\nbuilding virus.c" echo "VI resembling utility skeleton\n" ####################################### echo "gcc -Wall -Os -s -o vi virus.c" gcc -Wall -Os -s -o virus virus.c echo "stripping debug information" strip virus cp virus vi echo "done"