Answer:
mkdir ~/home/backups
tar -cjf YOURFIRSTNAME.tar.bz /var/log
mv YOURFIRSTNAME.tar.bz ~/home/backups
Step-by-step explanation:
The bash script makes a new directory called backups in the home directory then archives and compresses the log files in the /var/log folder. Then the compressed file is moved to the newly created backups folder.