Est-il possible d'avoir plusieurs lignes en ligne de commande (CMD)? Quelque chose comme
"C:\Program Files\WinRAR\WinRAR.exe" a
aaa.txt.hpp,
bbb.txt,
ccc.txt
au lieu de
"C:\Program Files\WinRAR\WinRAR.exe" a aaa.txt.hpp, bbb.txt, ccc.txt
Oui, vous pouvez le faire en évitant le caractère EOL, comme ceci:
"C:\Program Files\WinRAR\WinRAR.exe" a ^
aaa.txt.hpp, ^
bbb.txt, ^
ccc.txt
où ^
est le caractère d'échappement.