Deletion
compile_clean.sh:
source ./compile_liboath.sh # Import the compile_liboath.sh script.
source ./compile_zookeeper.sh # Import the compile_zookeeper.sh script.
source ./compile_client.sh # Import the compile_client.sh script.
source ./compile_server.sh # Import the compile_server.sh script.
set "-e"
function main()
{
cd /home
compile_liboath_clean # Delete liboath.
compile_zookeeper_clean # Delete ZooKeeper.
compile_client_clean # Delete client software.
compile_server_clean # Delete server software.
}
main
Delete the compilation files.
sh compile_clean.sh
Parent topic: Usage Example