T Tigoba Sep 14, 2014 #1 This may be a very stupid question, but how can I install all e17-modules? pkg install e17-module* won't work.
This may be a very stupid question, but how can I install all e17-modules? pkg install e17-module* won't work.
talsamon Sep 14, 2014 #2 Code: pkg install e17-modules x11-wm/e17-modules is a meta-port installs most of the modules or with pkg install -g e17-module\*.
Code: pkg install e17-modules x11-wm/e17-modules is a meta-port installs most of the modules or with pkg install -g e17-module\*.
OP T Tigoba Sep 14, 2014 Thread Starter #3 AH, thank you. But is there a way to put wildcards into pkg install in general?
talsamon Sep 14, 2014 #4 The option Code: -g, --glob Treat the package names as shell glob patterns. ( from pkg help install ).
The option Code: -g, --glob Treat the package names as shell glob patterns. ( from pkg help install ).
OP T Tigoba Sep 15, 2014 Thread Starter #5 Code: pkg install -g e17-module* pkg: No match. What am I doing wrong?
SirDice Administrator Staff member Administrator Moderator Sep 15, 2014 #6 You need to escape the asterisk or the shell is going to try to glob(1) it before the command is sent to pkg(8).
You need to escape the asterisk or the shell is going to try to glob(1) it before the command is sent to pkg(8).