Ausgabedatei mit Tagesdatum (AIX)

TheManWho

Mitglied
Hi!
Ich hab ne Frage - allerding zu Unix (AIX):
In einem sh-Skript leite ich die Ausgabe eines SQL-Skripts in eine Datei um:
sqlplus user/passw@db < query.sql > output.txt

Der Name dieser Outputdatei soll jetzt das Tagesdatum und die Uhrzeit enthalten...Wie geht das?
 
Code:
FILE=`date +%m%d%y.%H%M%S`
sqlplus user/passw@db < query.sql > $FILE.txt


Gruß

RedWing

//edit Schau mal unter
Code:
man date
für weitere Formatierungsoptionen
 
Zurück