摘要: In your repository, create the `.github/workflows/` directory to store your workflow files. In the `.github/workflows/` directory, create a new file c 阅读全文
posted @ 2023-08-15 18:55 fndefbwefsowpvqfx 阅读(21) 评论(0) 推荐(0) 编辑
摘要: `&` separates commands on a line. `&&` executes this command only if previous command's errorlevel is 0. `||` (not used above) executes this command o 阅读全文
posted @ 2023-08-15 17:29 fndefbwefsowpvqfx 阅读(6) 评论(0) 推荐(0) 编辑
摘要: `command1 & command2` Use to separate multiple commands on one command line. Cmd.exe runs the first command, and then the second command. `command1 && 阅读全文
posted @ 2023-08-15 17:25 fndefbwefsowpvqfx 阅读(24) 评论(0) 推荐(0) 编辑
摘要: ```bat set "PATH=%CD%\..\what;%PATH%" set "THE_ENV=0" ``` 阅读全文
posted @ 2023-08-15 17:22 fndefbwefsowpvqfx 阅读(5) 评论(0) 推荐(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 阅读全文
posted @ 2023-08-15 17:20 fndefbwefsowpvqfx 阅读(26) 评论(0) 推荐(0) 编辑