Hello
I have question about order of parameters for command rm.

$ ls -l test
total 0
-rw-r--r-- 1 user group 0 Nov 30 22:32 file
$ rm -rfvi test
rm: descend into directory ‘test’? n
$ ls -l test
total 0
-rw-r--r-- 1 user group 0 Nov 30 22:32 file

but

$ rm -irfv test
removed ‘test/file’
removed directory: ‘test’
$ ls -l test
ls: cannot access test: No such file or directory

Is it normal?

coreutils-8.24 and other version

--
Best regards dracorp

Reply via email to