Multiple choice Make a copy of every jpg image file in the current directory and rename adding _bk basename -s .jpg -a *.jpg | xargs -n1 -i cp {}.jpg {}_bk.jpg find /home -mtime -1 du -sh ./* shutdown -h now Reveal answer Fill a bubble to check yourself A Correct answer Explanation The 'basename' command extracts the filename, and 'xargs' is used to execute the copy command for each file found, appending '_bk' to the new filename.