Reputation: 3
I'm having problem with inserting command 'clear' in bash script what I want is to clear the screen
printMenu until [ $choice -eq 4 ]; do done
Upvotes: 0
Views: 125
Reputation: 2198
function printMenu { clear ... done clear
Upvotes: 1