0
What is the importance of -- in terminal?
Say I have a command to install pygame : pip install -- user pygame What is the importance of "--"
2 Réponses
+ 3
It tells pip that what follows is an option, not the name of a package to install.
0
'--' is for long options
'-' is for short
for example:
gcc test.c -o test
and
pacman -S --noconfirm vlc