mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-30 00:00:11 +01:00
git-svn-id: https://zerberus.eonerc.rwth-aachen.de:8443/svn/s2ss/trunk@83 8ec27952-4edc-4aab-86aa-e87bb2611832
9 lines
140 B
Bash
Executable file
9 lines
140 B
Bash
Executable file
#!/bin/bash
|
|
|
|
for if in lo eth1; do
|
|
for p in qdisc filter class; do
|
|
echo "======= $if: $p ========"
|
|
tc $p show dev $if
|
|
done
|
|
echo
|
|
done
|