Blame view

list_bridges.sh 216 Bytes
3e470988   hmalti   First commit
1
  #!/bin/bash
5721892d   hmalti   Avancées
2
  for eachfile in $PATH_MANIFEST/bridges/*.manifest
3e470988   hmalti   First commit
3
  do 
5721892d   hmalti   Avancées
4
5
6
7
8
  	NOM_BRIDGE=$(grep nom_bridge $eachfile | cut -d ':' -f2)
  	echo "----------------------"
  	brctl show $NOM_BRIDGE 
  	echo "----------------------"
  done