Blame view

image.sh 1.43 KB
3e470988   hmalti   First commit
1
  #!/bin/bash
17bfc359   hmalti   Help Image+contai...
2
  if [ $# -lt 1 ]; then
bc091391   hmalti   help + README
3
4
      printf "NOM \n"
      printf "\t Image\n"
17bfc359   hmalti   Help Image+contai...
5
      printf "SYNOPSIS \n"
bc091391   hmalti   help + README
6
      printf "\t baleine image <COMMANDES> [arguments]\n"
17bfc359   hmalti   Help Image+contai...
7
      printf "Description: \n \n"
bc091391   hmalti   help + README
8
      printf "\t La commande 'image' permet de créer une image, en supprimer, lister les images existantes (Son nom, sa taille, son chemin ) \n" 
17bfc359   hmalti   Help Image+contai...
9
10
11
12
13
14
15
16
17
18
19
20
      printf "Les commandes sont :\n \n"
      printf "\t %-10s %-10s \n" "<create>"  "crée une image."
      printf "\t \t [-i], [NOM_IMAGE]\n \n" 
      printf "\t \t [-s], [TAILLE]\n \n" 
      printf "\t \t [-r], [REPERTOIRE]\n \n" 
      printf "\t \t [-P], [PROXY]\n \n"
      printf " \t %-10s %-10s \n" "<list>"  "liste les images existantes ainsi que leurs manifestes."
      printf " \t %-10s %-10s \n" "<remove>"  "Supprime l'image donnée en argument."
      printf "\t \t [-c], --container [NOM_CONTAINER]\n \n" 
      printf "Utilisez baleine <commande> help pour plus d'informations à propos d'une commande.\n"
  fi
  
3e470988   hmalti   First commit
21
  
5161dfdb   hmalti   Améliorations scr...
22
  case $1 in
3e470988   hmalti   First commit
23
24
      "create")
          #Si on veut creer une image (qu'on a apellé le script ./balaine.sh image create)
5161dfdb   hmalti   Améliorations scr...
25
          bash create_image.sh "${@:2}"
3e470988   hmalti   First commit
26
27
28
          ;;
      "list")
          #Si on veut lister les images (qu'on a apellé le script ./balaine.sh image list)
5721892d   hmalti   Avancées
29
          bash list_images.sh "${@:2}"
3e470988   hmalti   First commit
30
31
          ;;
      "import")
5721892d   hmalti   Avancées
32
          bash import_container.sh "${@:2}"
3e470988   hmalti   First commit
33
34
          ;;
      "export")
5721892d   hmalti   Avancées
35
          bash export_container.sh "${@:2}"
3e470988   hmalti   First commit
36
37
                 ;;
      "remove")
5721892d   hmalti   Avancées
38
          bash remove_image.sh "${@:2}"
3e470988   hmalti   First commit
39
  esac