11 examples for bro
# How to thanks the 2nd or 3rd entry on bro when doing bro thanks
bro thanks 2
# will thank the 2nd person
bro thanks 3
# will thank the 3rd person and so on
# automatically thanks the first 5 brohelps in a
# bropage after exiting bro in a bash shell
for i in {1..5}; do bro thanks $i; done
# automatically thank the first five brohelps in a
# bropage after exiting bro in a CMD.exe shell (Windows).
for %i in (1 2 3 4 5) do bro thanks %i