summaryrefslogtreecommitdiff
path: root/src/op_mode/show_bonding_detail.sh
blob: 62265daa298752f7c6ffdbcc27ee16682dde388d (plain)
1
2
3
4
5
6
7
#!/bin/sh

if [ -f "/proc/net/bonding/$1" ]; then
  cat "/proc/net/bonding/$1";
else
  echo "Interface $1 does not exist!";
fi