Zitat Zitat von Manuel Beitrag anzeigen
Nebenbei: Was ist der Unterschied zwischen qemu und qemu?
Perl sagt:
bg@aequitas ~ $ perl -e "if ('qemu' == 'qemu') { print 'No diff'; } else { print 'Not the same...'; } print \"\n\";"
No diff
bg@aequitas ~ $


Bash sagt:
bg@aequitas ~ $ if [ "qemu" == "qemu" ] ; then echo "No diff" ; else echo "Not the same..." ; fi
No diff
bg@aequitas ~ $


Python sagt:
bg@aequitas ~ $ python -c "if 'qemu' == 'qemu': print 'No diff'" && python -c "if 'qemu' != 'qemu': print 'Not the same...'"
No diff
bg@aequitas ~ $


So, ich denke mal es ist das selbe. +1