14 lines
220 B
Bash
Executable File
14 lines
220 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "*** CLEAN BEGIN ***"
|
|
|
|
echo "Cleaning up the main work area. This may take a while..."
|
|
rm -rf work
|
|
mkdir work
|
|
|
|
# -p stops errors if the directory already exists
|
|
mkdir -p source
|
|
|
|
echo "*** CLEAN END ***"
|
|
|