https://bugzilla.redhat.com/show_bug.cgi?id=1370923



--- Comment #7 from Ralf Corsepius <rc040...@freenet.de> ---
(In reply to Petr Pisar from comment #5)
> It is and isn't. There is:

Wrong. Without the quotes, the shell interprets the '()', which cause dnf not
to receive the correct arguments:

Proof:
# cat test.sh 
#!/bin/sh
for x in ${*}; do
echo "$x";
done


# ./test.sh 1 2 3
1
2
3

# ./test.sh 1 2 3 a(b)
bash: syntax error near unexpected token `('

# ./test.sh 1 2 3 'ab(b)'
1
2
3
ab(b)

# dnf install perl(foo)
bash: syntax error near unexpected token `('

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

Reply via email to