views:

13

answers:

2

how i can take backup of file on UNIX-AIX ?

A: 

rsync should help. There are many examples.

Alan Haggai Alavi
+1  A: 

Depends what you mean. Backing up a file could be as simple as copying it somewhere else.

cp myfile /my/backups/myfile.bak
dogbane