vote up 0 vote down star

Duplicate

Unable to remove everything else in a folder except FileA

I guess that it is slightly similar to this: delete [^Music]

However, it does not work.

flag

You already asked this question (and Adam gave the accepted answer). Why post it again? – Can Berk Güder Mar 15 at 15:49
@Can: I did not post it again. I edited my old question to up to date. I can't remove it. – Masi Mar 15 at 15:58
@Masi: yeah, I just noticed. Actually, the other question is the duplicate. Either way, I think one should be closed. – Can Berk Güder Mar 15 at 16:05
@Please, close this question as no longer relevant. – Masi Jun 12 at 15:44

2 Answers

vote up 2 vote down

The command

rm (ls | grep -v '^Music$')

should work. If some of your "files" are also subdirectories, then you want to recursively delete them, too:

rm -r (ls | grep -v '^Music$')

Warning: rm -r can be dangerous and you could accidentally delete a lot of files. If you would like to confirm what you will be deleting, try looking at the output of

ls | grep -v '^Music$'

Explanation:

  • The ls command lists directory contents; without an argument, it defaults to the current directory.
  • The pipe symbol | redirects output to another command; when the output of ls is redirected in this way, it prints filenames one-per-line, rather than in a column format as you would see if you type ls at an interactive terminal.
  • The grep command matches lines for patterns; the -v switch means to print lines that don't match the pattern.
  • The pattern ^Music$ means to match a line starting and ending with Music -- that is, only the string Music; the effect of the ^ (beginning of line) and $ (end of line) characters can also be achieved with the -x switch, as in grep -vx Music.
  • The syntax command (subcommand) is fish's way of taking the output of one command and passing it over as command-line arguments to another.
  • The rm command removes files. By default, it does not remove directories, but the -r ("recursive") option changes that.

You can learn about these commands and more by typing man command, where command is what you want to learn about.

link|flag
vote up 2 vote down check

Put the following command to your ~/.bashrc

shopt -s extglob

You can now delete everything else in the folder except the Music folder by

rm -r !(Music)

Please, be careful with the command. It is powerful, but dangerous too.

I recommend to test it always with the command

echo rm -r !(Music)
link|flag
he asked about fish shell, this is a bash option. does it also work in config.fish? – bjeanes Jun 12 at 5:20
@bjeanes: Fish shell is buggy, so I changed the question. I considered Bash in answering the question. – Masi Jun 12 at 15:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.