The exhibit is a listing of your current directory. You need to place the file sonic into the directory
dir1 and rename the file to game, while removing the original file. Choose the commands that will
accomplish this task. (Choose two.)
A.
cp ./sonic /widgets/dir1/game ; rm sonic
B.
mv /sonic widgets/dir1/game
C.
cp /sonic widgets/dir1/game ; rm /sonic
D.
mv sonic widgets/dir1/game
E.
cp ./widgets/dir1/sonic /game; rm -r sonic
F.
mv sonic ./dir1/game
G.
cp ./sonic ./widgets/dir1/game ; rm ./sonic
H.
mv /sonic /widgets/dir1/ ; rm ./sonic
Explanation: