Skip to content
Snippets Groups Projects
Unverified Commit 3684e938 authored by Bob Mottram's avatar Bob Mottram
Browse files

List tox users in a friendlier way

parent 154ed49f
No related branches found
No related tags found
No related merge requests found
......@@ -109,7 +109,9 @@ function ipfs_bootstrap {
}
function detect_tox_users {
lstox > $TEMPFILE
# don't show the first peer field
lstox | awk -F ' ' '{$1=""; print $0}' | sed -e 's/^[[:space:]]*//' | sort -d > $TEMPFILE
toxctr=0
echo '<ol type="square">' >> $TOX_USERS_FILE.new
while IFS='' read -r line || [[ -n "$line" ]]; do
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment