Blame view

list_images.sh 128 Bytes
3e470988   hmalti   First commit
1
2
  #!/bin/bash
  
b1087939   hmalti   Ajout commandes
3
  cd $PATH_MANIFEST/images
3e470988   hmalti   First commit
4
5
6
7
8
9
10
  
  for eachfile in ./*.manifest
  do 
  	echo $eachfile
  	val=$(cat "$eachfile")
  	echo $val
  done