You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
428 B
18 lines
428 B
clear
|
|
ceedling test:all
|
|
rm -r build/
|
|
|
|
|
|
cd src/
|
|
|
|
sed '/John Doe/,$d' employeesCredentialsList.txt > temp.txt
|
|
mv temp.txt employeesCredentialsList.txt
|
|
|
|
sed '/Name : John/,$d' employeesData.txt > temp.txt
|
|
mv temp.txt employeesData.txt
|
|
|
|
gcc mainMenu.c error.c createEmployeeAccount.c showGeneralInfoEmployee.c employeeLogin.c createCustomer.c helperFunctions.c loginCustomer.c customerMenu.c main.c -o main
|
|
./main
|
|
rm main
|
|
|
|
cd ..
|