![]() Preserved Topic: rm -r *.bak |
|
---|---|
Author | Thread |
Paranoid (IV) Inmate From: Minneapolis, MN, USA |
![]() Can anyone explain why this command is only affecting the current directory contents? I thought it was supposed to recursively descend into subdirectories. |
Paranoid (IV) Inmate From: us |
![]() |
Paranoid (IV) Inmate From: Madison, Indiana, USA |
![]() rm -r *.bak looks for files name anything followed by .bak. Unless you have a directory named something.bak, the command will ignore all your current directories. |
Paranoid (IV) Inmate From: Minneapolis, MN, USA |
![]() Ah, i see, thanks. |