静默删除
del /f /s /q filename multiple commands in CMD
& command1 & command2 Execute Command1 and then execute Command2 && command1 && command2 Runs the command2 only when command1 doesn't Complete successfully || command1 || command2 Runs the second command if the first command had an error () (command1 || command2) || (command3 & command4) Defines the order in which commands are to be executed
Advertisements
发表评论