Blame view

list_container.sh 130 Bytes
3e470988   hmalti   First commit
1
2
3
4
5
6
7
8
9
10
  #!/bin/bash
  
  cd $PWD/baleine/Containers
  
  for eachfile in ./*.manifest
  do 
  	echo $eachfile
  	val=$(cat "$eachfile")
  	echo $val
  done