Clear first

This commit is contained in:
Bob Mottram 2016-12-21 16:57:31 +00:00
parent 6e6f2a19b6
commit 7fcac0659c
1 changed files with 1 additions and 1 deletions

View File

@ -752,12 +752,12 @@ function store_passwords {
}
function show_tor_bridges {
clear
bridges_list=$(grep "Bridge " /etc/tor/torrc | grep -v '##')
if [ ${#bridges_list} -eq 0 ]; then
echo $'No Tor bridges have been added'
return
fi
clear
echo "${bridges_list}"
}