I am running following command in postinst script of custom dpkg package
mkdir -p /var/{cache,run,doc}
The command works but create single dir named /var/{cache,run,doc} not three seperate dirs in /var .
Is there any alternative to do this?
Thanks