摘要:
In your repository, create the `.github/workflows/` directory to store your workflow files. In the `.github/workflows/` directory, create a new file c 阅读全文
摘要:
`&` separates commands on a line. `&&` executes this command only if previous command's errorlevel is 0. `||` (not used above) executes this command o 阅读全文
摘要:
`command1 & command2` Use to separate multiple commands on one command line. Cmd.exe runs the first command, and then the second command. `command1 && 阅读全文
摘要:
```bat set "PATH=%CD%\..\what;%PATH%" set "THE_ENV=0" ``` 阅读全文
摘要:
# mac install ```bash brew install p7zip ``` # example ```bash 7z a -r -mx9 a:\\b\\c ``` 最终在b目录下生成c.7z ```bash 7z a -tzip archive.zip -r src\*.cpp src 阅读全文