[log_editor] Change default text

This commit is contained in:
Mathieu Maret 2012-07-03 09:36:25 +02:00
parent eb8835848f
commit ba7bf23ba9
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
#!/bin/sh
log_directory=~/log
log_sample="\nLundi:\n\nMardi:\n\nMercredi:\n\nJeudi:\n\nVendredi:\n\n\n\n\nTODO:\n"
log_sample="Marvell :\n\nFait (imprévu):\n\t\t\nFait (prévu):\n\t\t\nEn cours (prévu):\n\t\t\nPrévisionnel:\n\t\t\nPrévisionnel (à plus long terme):\n\t\t\n\n\nLundi:\n\nMardi:\n\nMercredi:\n\nJeudi:\n\nVendredi:\n\n\n\n\n"
SPM=60
MPH=60
@ -45,7 +45,7 @@ create_file () {
if [ ! -e $1 ]
then
mkdir -p $log_directory
echo -e $log_sample > $1
echo -e -n $log_sample > $1
fi
}