Created
December 6, 2017 12:10
-
-
Save ishworgurung/f18651ac95130992332d876d89920da1 to your computer and use it in GitHub Desktop.
some useful wl/wlctl commands
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# for wl (http://wiki.iopsys.se/index.php5/Wlctl) | |
for i in `seq 1 2`; do | |
for cmd in status isup rate txpwr pktq_stats mempool bs_data; do | |
wl -i eth$i $cmd; | |
done; | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment