上一页 1 2 3 4 5 6 7 ··· 30 下一页
摘要: 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) 编辑
摘要: ![](https://img2023.cnblogs.com/blog/859364/202308/859364-20230812173039381-1528727410.png) ![](https://img2023.cnblogs.com/blog/859364/202308/859364- 阅读全文
posted @ 2023-08-12 17:31 fndefbwefsowpvqfx 阅读(17) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2023.cnblogs.com/blog/859364/202308/859364-20230812131702020-1448888441.png) ![](https://img2023.cnblogs.com/blog/859364/202308/859364- 阅读全文
posted @ 2023-08-12 13:17 fndefbwefsowpvqfx 阅读(3) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2023.cnblogs.com/blog/859364/202308/859364-20230812131052494-667473667.png) 阅读全文
posted @ 2023-08-12 13:10 fndefbwefsowpvqfx 阅读(1) 评论(0) 推荐(0) 编辑
摘要: # 1. Algorithm ## Graph The BGL graph interface and graph components are generic, in the same sense as the Standard Template Library (STL). ## Geometr 阅读全文
posted @ 2023-08-11 16:34 fndefbwefsowpvqfx 阅读(8) 评论(0) 推荐(0) 编辑
摘要: ```cpp #include // for mmap #include // for std::find #include // for std::cout #include int main() { boost::iostreams::mapped_file mmap("input.txt", 阅读全文
posted @ 2023-08-07 20:37 fndefbwefsowpvqfx 阅读(10) 评论(0) 推荐(0) 编辑
摘要: # Apple ![](https://img2023.cnblogs.com/blog/859364/202308/859364-20230802103044782-17978153.png) # Angle ![](https://img2023.cnblogs.com/blog/859364/ 阅读全文
posted @ 2023-08-02 10:31 fndefbwefsowpvqfx 阅读(1) 评论(0) 推荐(0) 编辑
摘要: # intrusive_ref_counter ```cpp template class intrusive_ref_counter struct thread_unsafe_counter struct thread_safe_counter ``` The `intrusive_ref_cou 阅读全文
posted @ 2023-07-28 14:10 fndefbwefsowpvqfx 阅读(5) 评论(0) 推荐(0) 编辑
摘要: ```lua #Requires AutoHotkey v2.0 getAllWindow(){ ids := WinGetList(,, "Program Manager") return ids } getWindowByTitle(title){ allWin := getAllWindow( 阅读全文
posted @ 2023-07-25 19:30 fndefbwefsowpvqfx 阅读(26) 评论(0) 推荐(0) 编辑
摘要: # message box ```lua MsgBox("count down auto close",, "T1") ``` # string ```lua resultArray := StrSplit(text, ",") ``` ```lua if(StrLen(yourStr)){ } ` 阅读全文
posted @ 2023-07-25 11:15 fndefbwefsowpvqfx 阅读(7) 评论(0) 推荐(0) 编辑
摘要: # chmod 700 ```text -rwx ``` # blank line at the bottom of the file, LF ![](https://img2023.cnblogs.com/blog/859364/202307/859364-20230718162513844-15 阅读全文
posted @ 2023-07-18 16:27 fndefbwefsowpvqfx 阅读(2) 评论(0) 推荐(0) 编辑
摘要: # might auto trim tailing white space on save. ![](https://img2023.cnblogs.com/blog/859364/202307/859364-20230704174130930-1731514211.png) # keep disa 阅读全文
posted @ 2023-07-04 17:42 fndefbwefsowpvqfx 阅读(5) 评论(0) 推荐(0) 编辑
摘要: # Redirect to text file ![](https://img2023.cnblogs.com/blog/859364/202307/859364-20230704142237032-889302615.png) 1. Set the option Redirect all Outp 阅读全文
posted @ 2023-07-04 14:23 fndefbwefsowpvqfx 阅读(8) 评论(0) 推荐(0) 编辑
摘要: compose multiple variables into a command line, then execute it. ```ps1 $dest="a:\des" $source="b:\src" $cmdlink="cmd" $cmdPart1="/c", "mklink", "/j" 阅读全文
posted @ 2023-06-22 08:17 fndefbwefsowpvqfx 阅读(2) 评论(0) 推荐(0) 编辑
摘要: ```pwsh $config="a:/etc/data.xml" $fromString='' $toString = ' false ' (Get-Content $config).replace($fromString, $toString) | Set-Content $config ``` 阅读全文
posted @ 2023-06-22 08:12 fndefbwefsowpvqfx 阅读(8) 评论(0) 推荐(0) 编辑
摘要: https://stackoverflow.com/questions/53230473/set-a-basic-java-option-on-tomcat https://docs.oracle.com/cd/E40518_01/integrator.311/integrator_install/ 阅读全文
posted @ 2023-06-21 18:59 fndefbwefsowpvqfx 阅读(9) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 30 下一页