8 ms·
That's not what OP encountered. The "failure" mode is mv file ../folder where folder is not a folder (non-exist, or is a file). And Linux will happily d
by fireattack 1y ago
That's not what OP encountered. The "failure" mode is
mv file ../folder
where folder is not a folder (non-exist, or is a file).
And Linux will happily do this too.
- do_not_redeem 1y ago$ mkdir -p /tmp/x/y/z $ cd /tmp/x/y/z $ touch a b c $ mv a b c ../notexist mv: target '../notexist': No such file or directory
- fireattack 1y agoDo it with one file?
- deleted 1y ago[deleted]
- whilenot-dev 1y ago$ mv a ../notexist $ echo $? 0
- do_not_redeem 1y agoThat's not what OP encountered. > When Gemini executed move * "..\anuraag_xyz project", the wildcard was expanded and each file was individually "moved" (renamed) to anuraag_xyz project within the original directory. > Each subsequent move overwrited the previous one, leaving only the last moved item In a different scenario where there was only one file, the command would have moved only that one file, and no data would have been lost.