Where does the file go if you execute the following command:
mv <file> ...
Note that there is no directory with the name ...
in the current directory.
There may be no directory with the name ...
in the current directory, but you're creating a file with that name. (Because it starts with a .
, it's hidden).
You can see such hidden files if using the -a
argument to ls
:
$ ls -a
. ..
$ touch file; mv file ...; ls -a
. .. ...
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With