2024-09-08 12:43:30 +02:00
|
|
|
#!/bin/bash
|
|
|
|
# crée un nouveau fichier d'illustration à partir d'un modèle
|
|
|
|
if [ -z "$1" ]; then
|
|
|
|
echo "Erreur : Veuillez spécifier un nom pour le fichier d'illustration." >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
extension="kra"
|
|
|
|
# choix du modèle de base
|
|
|
|
if [ "$2" ]; then
|
|
|
|
extension=$2
|
|
|
|
fi
|
|
|
|
|
|
|
|
nom_illustration=$1
|
|
|
|
dossier_illustrations="illustrations"
|
|
|
|
|
|
|
|
echo "création du dossier d'illustrations: $nom_illustration"
|
|
|
|
mkdir -p $dossier_illustrations
|
2024-09-08 22:49:11 +02:00
|
|
|
cp _models/illustrations/base_dessin.$extension "$dossier_illustrations/$nom_illustration.$extension"
|
2024-09-08 18:16:16 +02:00
|
|
|
date2name -w "$dossier_illustrations/$nom_illustration.$extension"
|
2024-09-08 12:43:30 +02:00
|
|
|
|
|
|
|
ls -l $dossier_illustrations
|
2024-09-08 18:16:16 +02:00
|
|
|
echo "fichier d'illustration $nom_illustration.$extension créé"
|
2024-09-08 12:43:30 +02:00
|
|
|
exit 0
|