2

Is there some --assume-default option to use similar to the --assume-yes in apt-get (see: https://askubuntu.com/questions/672892/).

When installing a module with cpan or many modules from an "autobundle" (see: How do I re-install a cpan-autobundle) it would be convenient to be able to use the default answer always instead of watching the install and occasionally hit the return-key on my keyboard.

I would like commands like this:

cpan --assume-default MyNewModule

or:

ASSUME=default perl -MCPAN -e 'install Bundle::Snapshot_2017_11_30_00'
UlfR
  • 4,175
  • 29
  • 45

1 Answers1

5
PERL_MM_USE_DEFAULT=1 

makes compliant modules pick a default rather than asking.

simbabque
  • 53,749
  • 8
  • 73
  • 136
ysth
  • 96,171
  • 6
  • 121
  • 214