@
server ```bash
root@ubuntu:~# docker run -it --rm debian bash
root@fa9a52396d6f:/# cd
root@fa9a52396d6f:~# mkdir a b
root@fa9a52396d6f:~# touch a/{1..10}.txt
root@fa9a52396d6f:~# ls -R a
a:
1.txt 10.txt 2.txt 3.txt 4.txt 5.txt 6.txt 7.txt 8.txt 9.txt
root@fa9a52396d6f:~# /bin/mv a/* b/*
/bin/mv: target 'b/*' is not a directory
root@fa9a52396d6f:~# /bin/mv -f a/* b/*
/bin/mv: target 'b/*' is not a directory
root@fa9a52396d6f:~# rm a/{2..10}.txt
root@fa9a52396d6f:~# ls -R a
a:
1.txt
root@fa9a52396d6f:~# /bin/mv a/* b/*
root@fa9a52396d6f:~# ls b/
'*'
```