I want to declare an option which could be invoked several times, e.g.: ``` --option value1 --option value2 --option value3 ``` This is similar to what `tar` have for files exclusion, .e.g ``` $ tar --exclude='./folder' --exclude='./upload/folder2' -zcvf /backup/filename.tgz . ``` I cannot find a way how to do this, or I'm missing something?