Blame view

list_bridges.sh 287 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 
b02be524   hmalti   Correctifs + gest...
4
5
  	#Test si des fichiers sont présents
  	test -f "$eachfile" || continue
5721892d   hmalti   Avancées
6
7
8
9
10
  	NOM_BRIDGE=$(grep nom_bridge $eachfile | cut -d ':' -f2)
  	echo "----------------------"
  	brctl show $NOM_BRIDGE 
  	echo "----------------------"
  done