γίνεται να εκτελείτε αυτόματα ένα script όταν το PC μου είναι "σε ηρεμία"
Giorgos Keramidas
keramida at ceid.upatras.gr
Thu Dec 8 17:53:47 EET 2005
On 2005-12-08 17:40, Giorgos Keramidas <keramida at ceid.upatras.gr> wrote:
> #!/bin/sh
>
> while true ; do
> archive="important-`date '+%Y.%m.%d.%H'`.tar.bz2"
> tmpfile="#${archive}#"
> cd /home/nikos
> find important/ | cpio -o -H ustar | bzip2 -9c -> "/backup/${tmpfile}#"
ΠΡΟΣΟΧΗ: Μου έχει ξεφύγει ένα παραπάνω '#' στην αμέσως παραπάνω γραμμή.
Το σωστό είναι:
find important/ | cpio -o -H ustar | bzip2 -9c -> "/backup/${tmpfile}"
> if test $? -ne 0 ; then
> rm -f "/backup/${tmpfile}"
> else
> mv "/backup/${tmpfile}" "/backup/${archive}"
> fi
> done
More information about the Linux-greek-users
mailing list