1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
| $ telnet baccus
Trying 192.168.0.20...
Connected to baccus.
Escape character is '^]'.
telnet (baccus)
AIX version 5
(C) Copyrights by IBM and by others 1982, 2000.
Connexion : root
Mot de passe de root :
*******************************************************************************
* *
* *
* Welcome to AIX Version 5.1! *
* *
* *
* Please see the README file in /usr/lpp/bos for information pertinent to *
* this release of the AIX Operating System. *
* *
* *
*******************************************************************************
Dernière connexion : ven 4 mai 19:31:38 CDT 2012 sur /dev/tty0
#
# cd /tmp
# mkdir toto
# mkdir toto/tata
# echo toto > toto/a
# echo toto > toto/"a b"
# echo titi > toto/tata/"a cc"
# set -o vi
# echo titi > toto/tata/"a bc"
#
# echo $(date +%Y%m%d) > f
# tar cf test.tar f
# find toto/ -type f -name "*" -exec tar uf /tmp/test.tar {} \;
# tar tf /tmp/test.tar
f
toto/tata/a cc
toto/tata/a bc
toto/a
toto/a b
# exit
Connection closed by foreign host.
$ |