Multiple choice technology operating systems

what is the command to move all files from the parent directory to the current directory?

  1. mv ../* .

  2. ../*. mv

  3. ../* mv

  4. mv ../*

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The mv command is used to move files. The argument ../* matches all files in the parent directory, and . specifies the current directory as the destination. Other choices are syntactically invalid commands.