Re: Help: Bash script that show you the last file created?

2009-02-15 Thread tal396
...@gentoo.org wrote: > > On Sunday 15 February 2009 10:32:15 tal396 wrote: >> hey, i created a backup dir that created backup every hours... >> there is any way to get the last file that created that is fomat is >> *.sql >> ? >> thats what i've done, but its n

Bash with colors?

2009-02-15 Thread tal396
there is any way to echo "aaa" or any msg in colors? -- View this message in context: http://www.nabble.com/Bash-with-colors--tp22023794p22023794.html Sent from the Gnu - Bash mailing list archive at Nabble.com.

Help: Bash script that show you the last file created?

2009-02-15 Thread tal396
hey, i created a backup dir that created backup every hours... there is any way to get the last file that created that is fomat is *.sql ? thats what i've done, but its not working so well... cd "/home/server/backups/local_backups/" ; find -type d | find . -name '*.sql' | tac | tail -1;