[SCRIPT] Creation d'un fichier log

Creation d'un fichier log [SCRIPT] - Codes et scripts - Linux et OS Alternatifs

Marsh Posté le 01-03-2003 à 22:53:13    

j'ai créer se script ki automatise l'install d' Apache...
 
Je voudrais avoir la sortie de l'ensemble de ces commandes dans un seul fichier log (exemple : out.log)
 
Comment procéder ??
 

cd /home/raph/
 
wget http://ralph93600.free.fr/download/RedHat_72/Apache-Php-Mysql/apache-1.3.22-6.i386.rpm
 
wget http://ralph93600.free.fr/download/RedHat_72/Apache-Php-Mysql/php-4.0.6-7.i386.rpm
 
wget http://ralph93600.free.fr/download/RedHat_72/Apache-Php-Mysql/MySQL-shared-3.23.51-1.i386.rpm
 
wget http://ralph93600.free.fr/download/RedHat_72/Apache-Php-Mysql/MySQL-3.23.51-1.i386.rpm
 
wget http://ralph93600.free.fr/download/RedHat_72/Apache-Php-Mysql/php-mysql-4.0.6-7.i386.rpm
 
wget http://ralph93600.free.fr/download/RedHat_72/Apache-Php-Mysql/phpMyAdmin-2.3.0-php.tar.gz
 
rpm -ivh apache-1.3.22-6.i386.rpm
 
rpm -ivh php-4.0.6-7.i386.rpm
 
rpm -ivh MySQL-shared-3.23.51-1.i386.rpm
 
rpm -ivh MySQL-3.23.51-1.i386.rpm
 
rpm -ivh php-mysql-4.0.6-7.i386.rpm
 
tar -xzvf phpMyAdmin-2.3.0-php.tar.gz
 
mkdir /home/www
 
mkdir /home/www/mysql
 
cd phpMyAdmin-2.3.0
 
mv * /home/www/mysql
 
cd ..
 
rm -rf phpMyAdmin-2.3.0


 
Merci d'avance  :jap:


---------------
Nothing can stop me, I'm never satisfied, I take what i want, refuse to be denied...
Reply

Marsh Posté le 01-03-2003 à 22:53:13   

Reply

Marsh Posté le 02-03-2003 à 10:42:28    

JoWiLe a écrit :

commande >> out.log


 
ouais j'ai penser à faire ca mais il va ecraser le fichiers à chaque fois non ??


---------------
Nothing can stop me, I'm never satisfied, I take what i want, refuse to be denied...
Reply

Marsh Posté le 02-03-2003 à 10:58:21    

raph93 a écrit :


 
ouais j'ai penser à faire ca mais il va ecraser le fichiers à chaque fois non ??
 


 
non
 

truc.sh > toto.log

efface a chaque coup

truc.sh >> toto.log

ajoute a la suite
 
le mieux et de genere un fichier a chaqe fois
comme ca

truc.sh > toto.log.`date "+%y%m%d"`


/!\ ATTENTION ` & ' SONT PAS IDENTIQUES IL FAUT UTILISER ` /!\
ou  

log toto.log.`date "+%y%m%d"` truc.sh


ce qui cree le fichier log avec la date du jour

ls
toto.log.030302


demain il crera toto.log.030303 et ainsi de suite


Message édité par kuroineko le 02-03-2003 à 11:05:02

---------------
[:kuroineko] Francois.P tel: (+33)617230820 http://www.ifrance.com/fpussault  fpussault@caramail.com
Reply

Marsh Posté le 02-03-2003 à 11:13:45    

kuroineko a écrit :


 
non
 

truc.sh > toto.log

efface a chaque coup

truc.sh >> toto.log

ajoute a la suite
 
le mieux et de genere un fichier a chaqe fois
comme ca

truc.sh > toto.log.`date "+%y%m%d"`


/!\ ATTENTION ` & ' SONT PAS IDENTIQUES IL FAUT UTILISER ` /!\
ou  

log toto.log.`date "+%y%m%d"` truc.sh


ce qui cree le fichier log avec la date du jour

ls
toto.log.030302


demain il crera toto.log.030303 et ainsi de suite


 
ok ton explanatiion est parfaite !
 
merci  :jap:


---------------
Nothing can stop me, I'm never satisfied, I take what i want, refuse to be denied...
Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed