Why am I getting prompted multiple times when importing on Linux? #4673
-
tl;dr - I have used beets on Windows for years. When I run More detail: For example, I have all the songs from a 2 CD set in a single directory, but get the following output:
On Windows, I'm pretty sure it would have imported the entire collection. Why is beet on Linux now looking at track 2 and prompting me for which album it is all over again?
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Because you're telling it to: |
Beta Was this translation helpful? Give feedback.
Because you're telling it to:
beet import *
is expanded by the shell tobeet import <file1> <file2> ...
, i.e. each file is passed as separate argument. Why did you switch frombeet import .
tobeet import *
?