软件工具 SofTool.CN 本次搜索耗时 0.315 秒,为您找到 106 个相关结果.
  • 27_自顶向下设计

    自顶向下设计 As programs get larger and more complex, they become more difficult to design, code and maintain. As with any large project, it is often a good idea to break large, comple...
  • 34_流程控制:for 循环

    流程控制:for 循环 for: 传统 shell 格式 for: C 语言格式 总结 拓展阅读 流程控制:for 循环 In this final chapter on flow control, we will look at another of the shell’s looping constructs. The for loop ...
  • 3.2_从源码编译比特币核心

    3.2.1 选择Bitcoin Core版本 3.2.2 配置构建Bitcoin Core 3.2.3 构建Bitcoin Core可执行文件 Bitcoin Core的源代码可以下载ZIP格式,也可以从GitHub克隆官方的源代码库: 在GitHub比特币页面GitHub bitcoin page上,选择“下载ZIP”; 使用git命令行在系统...
  • 37_奇珍异宝

    奇珍异宝 组命令和子 shell 进程替换 陷阱 异步执行 等待 命名管道 设置一个命名管道 使用命名管道 总结 拓展阅读 奇珍异宝 In this, the final chapter of our journey, we will look at some odds and ends. While we have certai...
  • 4.2_比特币地址

    4.2.1 Base58和Base58Check编码 4.2.2 密钥的格式 4.2.2.1私钥的格式 4.2.2.2 从Base58Check解码 4.2.2.3 将十六进制转换为Base58Check编码 4.2.2.4 将十六进制(压缩格式密钥)转换为Base58Check编码 4.2.2.5 公钥的格式 4.2.2.6 压缩格式公钥 ...
  • 07_重定向

    标准输入、输出和错误 标准输出重定向 标准错误重定向 重定向标准输出和错误到同一个文件 处理不需要的输出 标准输入重定向 cat - 连接文件 管道线 过滤器 uniq - 报道或忽略重复行 wc - 打印行数、字数和字节数 grep - 打印匹配行 head / tail - 打印文件开头部分/结尾部分 tee - 从 Stdin...
  • 30_流程控制:while/until 循环

    流程控制:while/until 循环 In the previous chapter, we developed a menu-driven program to produce various kinds of system information. The program works, but it still has a significant ...
  • 32_流程控制:case 分支

    流程控制:case 分支 In this chapter, we will continue to look at flow control. In Chapter 28, we constructed some simple menus and built the logic used to act on a user’s selection. To ...
  • 08 vi编辑器

    4310 2020-12-26 《Linux 入门教程》
    [10分钟掌握Linux vi编辑器常见命令的使用,最简单的vi编辑器教程] Linux下的文本编辑器有很多种,vi 是最常用的,也是各版本Linux的标配。注意,vi 仅仅是一个文本编辑器,可以给字符着色,可以自动补全,但是不像 Windows 下的 word 有排版功能。 vi 是十年磨一剑的产品,虽然命令繁多,并且大多数功能都是依靠键盘输入来完成,...
  • 02_什么是 shell

    终端仿真器 第一次按键 命令历史 移动光标 关于鼠标和光标 试试运行一些简单命令 结束终端会话 幕后控制台 拓展阅读 When we speak of the command line, we are really referring to the shell. The shell is a program that takes keyb...