上一页 1 2 3 4 5 6 7 8 ··· 454 下一页
摘要: Calendar cal May 2024 Su Mo Tu We Th Fr Sa 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 # all months cal 2024 # 阅读全文
posted @ 2024-05-30 17:46 Zhentiw 阅读(1) 评论(0) 推荐(0) 编辑
摘要: grep is a powerful command-line tool used for searching text using patterns. It's widely used for finding specific text within files or output streams 阅读全文
posted @ 2024-05-30 03:40 Zhentiw 阅读(5) 评论(0) 推荐(0) 编辑
摘要: curl is a powerful command-line tool for transferring data with URL syntax. It supports various protocols including HTTP, HTTPS, FTP, and many others. 阅读全文
posted @ 2024-05-29 00:58 Zhentiw 阅读(7) 评论(0) 推荐(0) 编辑
摘要: The kill command sends a signal to a process, usually to terminate the process. kill PID This command sends the SIGTERM signal to the process with the 阅读全文
posted @ 2024-05-24 03:11 Zhentiw 阅读(4) 评论(0) 推荐(0) 编辑
摘要: ps The ps command is used to display information about running processes. This command displays a snapshot of the current processes. Common Options: a 阅读全文
posted @ 2024-05-24 02:52 Zhentiw 阅读(2) 评论(0) 推荐(0) 编辑
摘要: Error handling in Bash can be managed using exit statuses and traps. Every commands in Bash returns an exit status (0 for success, non-zero for failur 阅读全文
posted @ 2024-05-23 03:20 Zhentiw 阅读(2) 评论(0) 推荐(0) 编辑
摘要: Functions in Bash allow you to group commands into reusable blocks. This helps make your scripts more modular and easier to manage. function_name() { 阅读全文
posted @ 2024-05-23 03:09 Zhentiw 阅读(2) 评论(0) 推荐(0) 编辑
摘要: The new cause data property that you can add to a thrown Error can be used to retain access to the original error caught in a promise rejection. const 阅读全文
posted @ 2024-05-22 14:37 Zhentiw 阅读(3) 评论(0) 推荐(0) 编辑
摘要: If we want to be able to modify the state of a promise from outside the constructor, we can use the Promise.withResolvers method to get access to the 阅读全文
posted @ 2024-05-22 14:28 Zhentiw 阅读(3) 评论(0) 推荐(0) 编辑
摘要: The new Array.with method gives you an immutable syntax for changing values of an array at a specified index. Sometimes .map will be more efficient. S 阅读全文
posted @ 2024-05-22 14:22 Zhentiw 阅读(2) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 454 下一页