> To tar all files in directory /home/user/thisdir : > > cd /home/user > tar -cvf bigtarball.tar thisdir/* I would leave off the /*, making it: tar -cvf bigtarball.tar thisdir thisdir/* would not catch any dot-files (thisdir/.profile, for example). -allen