36 KiB
36 KiB
| 1 | 测试类型 | 测试套 | 测试用例 | 测试描述 |
|---|---|---|---|---|
| 2 | 软件包测试 | bash | test_bash_command_echo_001 | 测试bash命令echo的基本功能,验证其能够正确输出字符串。 |
| 3 | 软件包测试 | bash | test_bash_command_echo_002 | 测试bash命令echo的-n参数功能,验证其能够输出字符串但不换行。 |
| 4 | 软件包测试 | bash | test_bash_command_echo_003 | 测试bash命令echo的-e参数功能,验证其能够解释转义字符。 |
| 5 | 软件包测试 | bash | test_bash_command_cd_001 | 测试bash命令cd的基本功能,验证其能够正确切换当前工作目录。 |
| 6 | 软件包测试 | bash | test_bash_command_cd_002 | 测试bash命令cd的-p参数功能,验证其能够解析符号链接并切换到物理路径。 |
| 7 | 软件包测试 | bash | test_bash_command_ls_001 | 测试bash命令ls的基本功能,验证其能够正确列出当前目录下的文件和目录。 |
| 8 | 软件包测试 | bash | test_bash_command_ls_002 | 测试bash命令ls的-l参数功能,验证其能够以长格式列出当前目录下的文件和目录。 |
| 9 | 软件包测试 | bash | test_bash_command_ls_003 | 测试bash命令ls的-a参数功能,验证其能够列出当前目录下的所有文件和目录,包括隐藏文件。 |
| 10 | 软件包测试 | bash | test_bash_command_ls_004 | 测试bash命令ls的-r参数功能,验证其能够递归列出当前目录及其子目录下的所有文件和目录。 |
| 11 | 软件包测试 | bash | test_bash_command_ls_005 | 测试bash命令ls的-t参数功能,验证其能够按照修改时间排序列出当前目录下的文件和目录。 |
| 12 | 软件包测试 | bash | test_bash_command_ls_006 | 测试bash命令ls的-s参数功能,验证其能够按照文件大小排序列出当前目录下的文件和目录。 |
| 13 | 软件包测试 | bash | test_bash_command_ls_007 | 测试bash命令ls的-h参数功能,验证其能够以人类可读的格式列出当前目录下的文件和目录大小。 |
| 14 | 软件包测试 | bash | test_bash_command_ls_008 | 测试bash命令ls的-u参数功能,验证其能够按照访问时间排序列出当前目录下的文件和目录。 |
| 15 | 软件包测试 | bash | test_bash_command_ls_009 | 测试bash命令ls的--color参数功能,验证其能够以不同颜色显示不同类型的文件和目录。 |
| 16 | 软件包测试 | bash | test_bash_command_ls_010 | 测试bash命令ls的--group-directories-first参数功能,验证其能够优先列出目录。 |
| 17 | 软件包测试 | bash | test_bash_command_ls_011 | 测试bash命令ls的--reverse参数功能,验证其能够以逆序列出当前目录下的文件和目录。 |
| 18 | 软件包测试 | bash | test_bash_command_ls_012 | 测试bash命令ls的--sort参数功能,验证其能够按照指定字段排序列出当前目录下的文件和目录。 |
| 19 | 软件包测试 | bash | test_bash_command_ls_013 | 测试bash命令ls的--time-style参数功能,验证其能够按照指定时间格式列当前目录下的文件和目录。 |
| 20 | 软件包测试 | bash | test_bash_command_ls_014 | 测试bash命令ls的--ignore参数功能,验证其能够忽略指定模式的文件和目录。 |
| 21 | 软件包测试 | bash | test_bash_command_ls_015 | 测试bash命令ls的--format参数功能,验证其能够按照指定格式列当前目录下的文件和目录。 |
| 22 | 软件包测试 | bash | test_bash_command_ls_016 | 测试bash命令ls的--hide参数功能,验证其能够隐藏指定模式的文件和目录。 |
| 23 | 软件包测试 | bash | test_bash_command_ls_017 | 测试bash命令ls的--full-time参数功能,验证其能够以完整时间格式列出当前目录下的文件和目录。 |
| 24 | 软件包测试 | bash | test_bash_command_ls_018 | 测试bash命令ls的--quoting-style参数功能,验证其能够按照指定引用风格列出当前目录下的文件和目录。 |
| 25 | 软件包测试 | bash | test_bash_command_ls_019 | 测试bash命令ls的--dereference参数功能,验证其能够解引用符号链接并列出目标文件或目录。 |
| 26 | 软件包测试 | bash | test_bash_command_ls_020 | 测试bash命令ls的--indicator-style参数功能,验证其能够以指定指示符风格列出当前目录下的文件和目录。 |
| 27 | 软件包测试 | bash | test_bash_command_grep_001 | 测试bash命令grep的基本功能,验证其能够正确搜索并输出匹配的文本行。 |
| 28 | 软件包测试 | bash | test_bash_command_grep_002 | 测试bash命令grep的-i参数功能,验证其能够忽略大小写搜索并输出匹配的文本行。 |
| 29 | 软件包测试 | bash | test_bash_command_grep_003 | 测试bash命令grep的-v参数功能,验证其能够反向搜索并输出不匹配的文本行。 |
| 30 | 软件包测试 | bash | test_bash_command_grep_004 | 测试bash命令grep的-c参数功能,验证其能够统计匹配的文本行数。 |
| 31 | 软件包测试 | bash | test_bash_command_grep_005 | 测试bash命令grep的-n参数功能,验证其能够显示匹配文本行的行号。 |
| 32 | 软件包测试 | bash | test_bash_command_grep_006 | 测试bash命令grep的-w参数功能,验证其能够匹配整个单词并输出匹配的文本行。 |
| 33 | 软件包测试 | bash | test_bash_command_grep_007 | 测试bash命令grep的-e参数功能,验证其能够使用扩展正则表达式搜索并输出匹配的文本行。 |
| 34 | 软件包测试 | bash | test_bash_command_grep_008 | 测试bash命令grep的-a参数功能,验证其能够显示匹配行及其后指定行数的内容。 |
| 35 | 软件包测试 | bash | test_bash_command_grep_009 | 测试bash命令grep的-r参数功能,验证其能够递归搜索目录及其子目录中的文件并输出匹配的文本行。 |
| 36 | 软件包测试 | bash | test_bash_command_grep_010 | 测试bash命令grep的-l参数功能,验证其能够仅显示包含匹配文本的文件名。 |
| 37 | 软件包测试 | bash | test_bash_command_grep_011 | 测试bash命令grep的-f参数功能,验证其能够从文件中读取模式并搜索匹配的文本行。 |
| 38 | 软件包测试 | bash | test_bash_command_grep_012 | 测试bash命令grep的-m参数功能,验证其能够限制匹配行数并输出匹配的文本行。 |
| 39 | 软件包测试 | bash | test_bash_command_grep_013 | 测试bash命令grep的-o参数功能,验证其能够仅显示匹配的文本部分。 |
| 40 | 软件包测试 | bash | test_bash_command_grep_014 | 测试bash命令grep的-q参数功能,验证其能够静默搜索并返回匹配状态码。 |
| 41 | 软件包测试 | bash | test_bash_command_grep_015 | 测试bash命令grep的-h参数功能,验证其能够显示匹配文本行的文件名。 |
| 42 | 软件包测试 | bash | test_bash_command_grep_016 | 测试bash命令grep的--color参数功能,验证其能够高亮显示匹配的文本行。 |
| 43 | 软件包测试 | bash | test_bash_command_grep_017 | 测试bash命令grep的--include参数功能,验证其能够仅搜索指定模式的文件并输出匹配的文本行。 |
| 44 | 软件包测试 | bash | test_bash_command_grep_018 | 测试bash命令grep的--exclude参数功能,验证其能够排除指定模式的文件并输出匹配的文本行。 |
| 45 | 软件包测试 | bash | test_bash_command_grep_019 | 测试bash命令grep的--exclude-dir参数功能,验证其能够排除指定模式的目录并输出匹配的文本行。 |
| 46 | 软件包测试 | bash | test_bash_command_grep_020 | 测试bash命令grep的--binary-files参数功能,验证其能够正确处理二进制文件并输出匹配的文本行。 |
| 47 | 软件包测试 | bash | test_bash_command_grep_021 | 测试bash命令grep的--line-buffered参数功能,验证其能够立即刷新输出缓冲区并显示匹配的文本行。 |
| 48 | 软件包测试 | bash | test_bash_command_grep_022 | 测试bash命令grep的--line-number参数功能,验证其能够显示匹配文本行的行号。 |
| 49 | 软件包测试 | bash | test_bash_command_grep_023 | 测试bash命令grep的--null参数功能,验证其能够以空字符分隔匹配的文件名。 |
| 50 | 软件包测试 | bash | test_bash_command_grep_024 | 测试bash命令grep的--count参数功能,验证其能够统计匹配的文本行数并仅显示统计结果。 |
| 51 | 软件包测试 | bash | test_bash_command_grep_025 | 测试bash命令grep的--files-without-match参数功能,验证其能够仅显示不包含匹配文本的文件名。 |
| 52 | 软件包测试 | bash | test_bash_command_grep_026 | 测试bash命令grep的--files-with-matches参数功能,验证其能够仅显示包含匹配文本的文件名。 |
| 53 | 软件包测试 | bash | test_bash_command_grep_027 | 测试bash命令grep的--max-count参数功能,验证其能够限制匹配行数并输出匹配的文本行。 |
| 54 | 软件包测试 | bash | test_bash_command_grep_028 | 测试bash命令grep的--only-matching参数功能,验证其能够仅显示匹配的文本部分,且不输出整行内容。 |
| 55 | 软件包测试 | bash | test_bash_command_grep_029 | 测试bash命令grep的--ignore-case参数功能,验证其能够忽略大小写搜索并输出匹配的文本行。 |
| 56 | 软件包测试 | bash | test_bash_command_grep_030 | 测试bash命令grep的--no-filename参数功能,验证其能够不显示匹配文本行的文件名。 |
| 57 | 软件包测试 | bash | test_bash_command_cd_004 | 测试bash命令cd的-e参数功能,验证其能够切换到环境变量指定的目录。 |
| 58 | 软件包测试 | bash | test_bash_command_cd_005 | 测试bash命令cd的-p参数功能,验证其能够切换到物理路径并解析符号链接。 |
| 59 | 软件包测试 | bash | test_bash_command_cd_006 | 测试bash命令cd的-参数功能,验证其能够切换到上一个工作目录。 |
| 60 | 软件包测试 | bash | test_bash_command_grep_031 | 测试bash命令grep的--after-context参数功能,验证其能够显示匹配行及其后指定行数的内容。 |
| 61 | 软件包测试 | bash | test_bash_command_cd_007 | 测试bash命令cd的~参数功能,验证其能够切换到当前用户的主目录。 |
| 62 | 软件包测试 | bash | test_bash_command_cd_008 | 测试bash命令cd的..参数功能,验证其能够切换到上一级目录。 |
| 63 | 软件包测试 | bash | test_bash_command_cd_009 | 测试bash命令cd的--参数功能,验证其能够切换到指定目录并忽略后续参数。 |
| 64 | 软件包测试 | bash | test_bash_command_cd_010 | 测试bash命令cd的~username参数功能,验证其能够切换到指定用户的主目录。 |
| 65 | 软件包测试 | bash | test_bash_command_grep_032 | 测试bash命令grep的--before-context参数功能,验证其能够显示匹配行及其前指定行数的内容。 |
| 66 | 软件包测试 | bash | test_bash_command_grep_033 | 测试bash命令grep的--context参数功能,验证其能够显示匹配行及其前后指定行数的内容。 |
| 67 | 软件包测试 | bash | test_bash_command_grep_034 | 测试bash命令grep的--label参数功能,验证其能够为输入文件指定标签并显示匹配的文本行。 |
| 68 | 软件包测试 | bash | test_bash_command_grep_035 | 测试bash命令grep的--fixed-strings参数功能,验证其能够将模式视为固定字符串而非正则表达式并输出匹配的文本行。 |
| 69 | 软件包测试 | bash | test_bash_command_grep_036 | 测试bash命令grep的--line-regexp参数功能,验证其能够仅匹配整行内容并输出匹配的文本行。 |
| 70 | 软件包测试 | bash | test_bash_command_grep_037 | 测试bash命令grep的--no-messages参数功能,验证其能够忽略错误消息并输出匹配的文本行。 |
| 71 | 软件包测试 | bash | test_bash_command_cp_001 | 测试bash命令cp的基本功能,验证其能够正确复制文件。 |
| 72 | 软件包测试 | bash | test_bash_command_cp_002 | 测试bash命令cp的-r参数功能,验证其能够递归复制目录及其子目录下的所有文件和目录。 |
| 73 | 软件包测试 | bash | test_bash_command_cp_003 | 测试bash命令cp的-f参数功能,验证其能够强制覆盖目标文件而不提示。 |
| 74 | 软件包测试 | bash | test_bash_command_cp_004 | 测试bash命令cp的-i参数功能,验证其能够在覆盖目标文件前提示用户确认。 |
| 75 | 软件包测试 | bash | test_bash_command_cp_005 | 测试bash命令cp的-p参数功能,验证其能够保留文件的原始属性(如时间戳、权限等)复制文件。 |
| 76 | 软件包测试 | bash | test_bash_command_cp_006 | 测试bash命令cp的-u参数功能,验证其能够仅复制源文件中比目标文件新的文件或目标不存在的文件。 |
| 77 | 软件包测试 | bash | test_bash_command_cp_007 | 测试bash命令cp的-v参数功能,验证其能够显示详细的复制操作过程。 |
| 78 | 软件包测试 | bash | test_bash_command_cp_008 | 测试bash命令cp的-a参数功能,验证其能够以归档模式复制文件,保留所有文件属性和结构。 |
| 79 | 软件包测试 | bash | test_bash_command_cp_009 | 测试bash命令cp的-l参数功能,验证其能够创建硬链接而非复制文件。 |
| 80 | 软件包测试 | bash | test_bash_command_cp_010 | 测试bash命令cp的-s参数功能,验证其能够创建符号链接而非复制文件。 |
| 81 | 软件包测试 | bash | test_bash_command_cp_011 | 测试bash命令cp的--backup参数功能,验证其能够在覆盖文件前创建备份文件。 |
| 82 | 软件包测试 | bash | test_bash_command_cp_012 | 测试bash命令cp的--preserve参数功能,验证其能够保留指定的文件属性(如模式、所有权、时间戳等)复制文件。 |
| 83 | 软件包测试 | bash | test_bash_command_cp_013 | 测试bash命令cp的--no-clobber参数功能,验证其能够避免覆盖已存在的目标文件。 |
| 84 | 软件包测试 | bash | test_bash_command_cp_014 | 测试bash命令cp的--parents参数功能,验证其能够在复制文件时保留目录结构。 |
| 85 | 软件包测试 | bash | test_bash_command_cp_015 | 测试bash命令cp的--remove-destination参数功能,验证其能够在复制文件前删除目标文件。 |
| 86 | 软件包测试 | bash | test_bash_command_cp_016 | 测试bash命令cp的--sparse参数功能,验证其能够处理稀疏文件并高效复制。 |
| 87 | 软件包测试 | bash | test_bash_command_cp_017 | 测试bash命令cp的--strip-trailing-slashes参数功能,验证其能够移除源文件路径末尾的斜杠并复制文件。 |
| 88 | 软件包测试 | bash | test_bash_command_cp_018 | 测试bash命令cp的--reflink参数功能,验证其能够在支持的情况下使用写时复制方式复制文件。 |
| 89 | 软件包测试 | bash | test_bash_command_cp_019 | 测试bash命令cp的--target-directory参数功能,验证其能够将文件复制到指定目录中。 |
| 90 | 软件包测试 | bash | test_bash_command_mv_001 | 测试bash命令mv的基本功能,验证其能够正确移动或重命名文件。 |
| 91 | 软件包测试 | bash | test_bash_command_mv_002 | 测试bash命令mv的-f参数功能,验证其能够强制移动或重命名文件而不提示。 |
| 92 | 软件包测试 | bash | test_bash_command_mv_003 | 测试bash命令mv的-i参数功能,验证其能够在移动或重命名文件前提示用户确认。 |
| 93 | 软件包测试 | bash | test_bash_command_mv_004 | 测试bash命令mv的-u参数功能,验证其能够仅移动或重命名比目标文件新的文件或目标不存在的文件。 |
| 94 | 软件包测试 | bash | test_bash_command_mv_005 | 测试bash命令mv的-v参数功能,验证其能够显示详细的移动或重命名操作过程。 |
| 95 | 软件包测试 | bash | test_bash_command_mv_006 | 测试bash命令mv的-n参数功能,验证其能够避免覆盖已存在的目标文件。 |
| 96 | 软件包测试 | bash | test_bash_command_mv_007 | 测试bash命令mv的--backup参数功能,验证其能够在移动或重命名文件前创建备份文件。 |
| 97 | 软件包测试 | bash | test_bash_command_mv_008 | 测试bash命令mv的--strip-trailing-slashes参数功能,验证其能够移除源文件路径末尾的斜杠并移动或重命名文件。 |
| 98 | 软件包测试 | bash | test_bash_command_mv_009 | 测试bash命令mv的--target-directory参数功能,验证其能够将文件移动到指定目录中。 |
| 99 | 软件包测试 | bash | test_bash_command_mv_010 | 测试bash命令mv的--no-target-directory参数功能,验证其能够将文件视为普通文件而非目录移动或重命名。 |
| 100 | 软件包测试 | bash | test_bash_command_mv_011 | 测试bash命令mv的--update参数功能,验证其能够仅移动或重命名比目标文件新的文件或目标不存在的文件。 |
| 101 | 软件包测试 | bash | test_bash_command_mv_012 | 测试bash命令mv的--suffix参数功能,验证其能够在备份文件时使用指定的后缀名。 |
| 102 | 软件包测试 | bash | test_bash_command_rm_001 | 测试bash命令rm的基本功能,验证其能够正确删除文件。 |
| 103 | 软件包测试 | bash | test_bash_command_rm_002 | 测试bash命令rm的-f参数功能,验证其能够强制删除文件而不提示。 |
| 104 | 软件包测试 | bash | test_bash_command_rm_003 | 测试bash命令rm的-r参数功能,验证其能够递归删除目录及其子目录下的所有文件和目录。 |
| 105 | 软件包测试 | bash | test_bash_command_rm_004 | 测试bash命令rm的-i参数功能,验证其能够在删除文件前提示用户确认。 |
| 106 | 软件包测试 | bash | test_bash_command_rm_005 | 测试bash命令rm的-v参数功能,验证其能够显示详细的删除操作过程。 |
| 107 | 软件包测试 | bash | test_bash_command_rm_006 | 测试bash命令rm的-d参数功能,验证其能够删除空目录。 |
| 108 | 软件包测试 | bash | test_bash_command_rm_007 | 测试bash命令rm的--preserve-root参数功能,验证其能够避免递归删除根目录。 |
| 109 | 软件包测试 | bash | test_bash_command_rm_008 | 测试bash命令rm的--no-preserve-root参数功能,验证其能够递归删除根目录下的文件和目录。 |
| 110 | 软件包测试 | bash | test_bash_command_mkdir_001 | 测试bash命令mkdir的基本功能,验证其能够正确创建目录。 |
| 111 | 软件包测试 | bash | test_bash_command_mkdir_002 | 测试bash命令mkdir的-p参数功能,验证其能够递归创建目录及其父目录。 |
| 112 | 软件包测试 | bash | test_bash_command_mkdir_003 | 测试bash命令mkdir的-m参数功能,验证其能够以指定权限模式创建目录。 |
| 113 | 软件包测试 | bash | test_bash_command_mkdir_004 | 测试bash命令mkdir的-v参数功能,验证其能够显示详细的目录创建操作过程。 |
| 114 | 软件包测试 | bash | test_bash_command_mkdir_005 | 测试bash命令mkdir的--parents参数功能,验证其能够递归创建目录及其父目录。 |
| 115 | 软件包测试 | bash | test_bash_command_rm_009 | 测试bash命令rm的--one-file-system参数功能,验证其能够仅删除当前文件系统中的文件和目录。 |
| 116 | 软件包测试 | bash | test_bash_command_mkdir_006 | 测试bash命令mkdir的--verbose参数功能,验证其能够显示详细的目录创建操作过程。 |
| 117 | 软件包测试 | bash | test_bash_command_mkdir_007 | 测试bash命令mkdir的--mode参数功能,验证其能够以指定权限模式创建目录。 |
| 118 | 软件包测试 | bash | test_bash_command_rmdir_001 | 测试bash命令rmdir的基本功能,验证其能够正确删除空目录。 |
| 119 | 软件包测试 | bash | test_bash_command_mv_013 | 测试bash命令mv的--no-clobber参数功能,验证其能够避免覆盖已存在的目标文件。 |
| 120 | 软件包测试 | bash | test_bash_command_mkdir_008 | 测试bash命令mkdir的--help参数功能,验证其能够显示帮助信息。 |
| 121 | 软件包测试 | bash | test_bash_command_cp_020 | 测试bash命令cp的--no-dereference参数功能,验证其能够复制符号链接本身而非目标文件。 |
| 122 | 软件包测试 | bash | test_bash_command_cp_021 | 测试bash命令cp的--attributes-only参数功能,验证其能够仅复制文件的属性而不复制文件内容。 |
| 123 | 软件包测试 | bash | test_bash_command_mkdir_009 | 测试bash命令mkdir的--version参数功能,验证其能够显示版本信息。 |
| 124 | 软件包测试 | bash | test_bash_command_cp_022 | 测试bash命令cp的--archive参数功能,验证其能够以归档模式复制文件,保留所有文件属性和结构。 |
| 125 | 软件包测试 | bash | test_bash_command_rmdir_002 | 测试bash命令rmdir的-p参数功能,验证其能够递归删除空目录及其父目录。 |
| 126 | 软件包测试 | bash | test_bash_command_mv_014 | 测试bash命令mv的--interactive参数功能,验证其能够在移动或重命名文件前提示用户确认。 |
| 127 | 软件包测试 | bash | test_bash_command_cp_023 | 测试bash命令cp的--link参数功能,验证其能够创建硬链接而非复制文件。 |
| 128 | 软件包测试 | bash | test_bash_command_mv_015 | 测试bash命令mv的--force参数功能,验证其能够强制移动或重命名文件而不提示。 |
| 129 | 软件包测试 | bash | test_bash_command_mv_016 | 测试bash命令mv的--verbose参数功能,验证其能够显示详细的移动或重命名操作过程。 |
| 130 | 软件包测试 | bash | test_bash_command_cp_024 | 测试bash命令cp的--no-preserve参数功能,验证其能够不保留文件的原始属性复制文件。 |
| 131 | 软件包测试 | bash | test_bash_command_cp_025 | 测试bash命令cp的--suffix参数功能,验证其能够在备份文件时使用指定的后缀名。 |
| 132 | 软件包测试 | bash | test_bash_command_cp_026 | 测试bash命令cp的--no-target-directory参数功能,验证其能够将文件视为普通文件而非目录复制。 |
| 133 | 软件包测试 | bash | test_bash_command_cp_027 | 测试bash命令cp的--recursive参数功能,验证其能够递归复制目录及其子目录下的所有文件和目录。 |
| 134 | 软件包测试 | bash | test_bash_command_rmdir_003 | 测试bash命令rmdir的-v参数功能,验证其能够显示详细的目录删除操作过程。 |
| 135 | 软件包测试 | bash | test_bash_command_cp_028 | 测试bash命令cp的--dereference参数功能,验证其能够解引用符号链接并复制目标文件。 |
| 136 | 软件包测试 | bash | test_bash_command_cp_029 | 测试bash命令cp的--preserve=all参数功能,验证其能够保留所有文件属性(包括模式、所有权、时间戳等)复制文件。 |
| 137 | 软件包测试 | bash | test_bash_command_cp_030 | 测试bash命令cp的--one-file-system参数功能,验证其能够仅复制当前文件系统中的文件和目录。 |
| 138 | 软件包测试 | bash | test_bash_command_cp_031 | 测试bash命令cp的--verbose参数功能,验证其能够显示详细的复制操作过程。 |
| 139 | 软件包测试 | bash | test_bash_command_rm_010 | 测试bash命令rm的--interactive参数功能,验证其能够在删除文件前提示用户确认。 |
| 140 | 软件包测试 | bash | test_bash_command_mkdir_010 | 测试bash命令mkdir的--context参数功能,验证其能够显示详细的目录创建操作过程。 |
| 141 | 软件包测试 | bash | test_bash_command_rm_011 | 测试bash命令rm的--recursive参数功能,验证其能够递归删除目录及其子目录下的所有文件和目录。 |
| 142 | 软件包测试 | bash | test_bash_command_cp_032 | 测试bash命令cp的--copy-contents参数功能,验证其能够复制特殊文件(如设备文件)的内容而非其本身。 |
| 143 | 软件包测试 | bash | test_bash_command_cp_033 | 测试bash命令cp的--force参数功能,验证其能够强制覆盖目标文件而不提示。 |
| 144 | 软件包测试 | bash | test_bash_command_cp_034 | 测试bash命令cp的--no-preserve=all参数功能,验证其能够不保留所有文件属性复制文件。 |
| 145 | 软件包测试 | bash | test_bash_command_cp_035 | 测试bash命令cp的--preserve=links参数功能,验证其能够保留符号链接属性复制文件。 |
| 146 | 软件包测试 | bash | test_bash_command_touch_001 | 测试bash命令touch的基本功能,验证其能够正确创建空文件或更新文件的时间戳。 |
| 147 | 软件包测试 | bash | test_bash_command_touch_002 | 测试bash命令touch的-a参数功能,验证其能够仅更新文件的访问时间戳。 |
| 148 | 软件包测试 | bash | test_bash_command_touch_003 | 测试bash命令touch的-m参数功能,验证其能够仅更新文件的修改时间戳。 |
| 149 | 软件包测试 | bash | test_bash_command_touch_004 | 测试bash命令touch的-c参数功能,验证其能够避免创建不存在的文件。 |
| 150 | 软件包测试 | bash | test_bash_command_touch_005 | 测试bash命令touch的-d参数功能,验证其能够使用指定时间更新文件的时间戳。 |
| 151 | 软件包测试 | bash | test_bash_command_touch_006 | 测试bash命令touch的-r参数功能,验证其能够使用参考文件的时间戳更新目标文件的时间戳。 |
| 152 | 软件包测试 | bash | test_bash_command_touch_007 | 测试bash命令touch的-t参数功能,验证其能够使用指定时间格式更新文件的时间戳。 |
| 153 | 软件包测试 | bash | test_bash_command_touch_008 | 测试bash命令touch的--no-create参数功能,验证其能够避免创建不存在的文件。 |
| 154 | 软件包测试 | bash | test_bash_command_touch_009 | 测试bash命令touch的--reference参数功能,验证其能够使用参考文件的时间戳更新目标文件的时间戳。 |
| 155 | 软件包测试 | bash | test_bash_command_touch_010 | 测试bash命令touch的--time参数功能,验证其能够使用指定时间类型(如access、modify)更新文件的时间戳。 |
| 156 | 软件包测试 | bash | test_bash_command_touch_011 | 测试bash命令touch的--date参数功能,验证其能够使用指定日期字符串更新文件的时间戳。 |
| 157 | 软件包测试 | bash | test_bash_command_touch_012 | 测试bash命令touch的--help参数功能,验证其能够显示帮助信息。 |
| 158 | 软件包测试 | bash | test_bash_command_touch_013 | 测试bash命令touch的--version参数功能,验证其能够显示版本信息。 |
| 159 | 软件包测试 | bash | test_bash_command_touch_014 | 测试bash命令touch的--no-dereference参数功能,验证其能够不跟随符号链接更新文件的时间戳。 |
| 160 | 软件包测试 | bash | test_bash_command_touch_015 | 测试bash命令touch的--time=atime参数功能,验证其能够仅更新文件的访问时间戳。 |
| 161 | 软件包测试 | bash | test_bash_command_touch_016 | 测试bash命令touch的--time=mtime参数功能,验证其能够仅更新文件的修改时间戳。 |
| 162 | 软件包测试 | bash | test_bash_command_touch_017 | 测试bash命令touch的--time=use参数功能,验证其能够使用指定时间类型(如access、modify)更新文件的时间戳。 |
| 163 | 软件包测试 | bash | test_bash_command_touch_018 | 测试bash命令touch的--time=ctime参数功能,验证其能够仅更新文件的创建时间戳。 |
| 164 | 软件包测试 | bash | test_bash_command_touch_019 | 测试bash命令touch的--time=birth参数功能,验证其能够仅更新文件的创建时间戳。 |
| 165 | 软件包测试 | bash | test_bash_command_touch_020 | 测试bash命令touch的--time=access参数功能,验证其能够仅更新文件的访问时间戳。 |
| 166 | 软件包测试 | bash | test_bash_command_cat_001 | 测试bash命令cat的基本功能,验证其能够正确输出文件内容。 |
| 167 | 软件包测试 | bash | test_bash_command_cat_002 | 测试bash命令cat的-n参数功能,验证其能够显示文件内容并显示行号。 |
| 168 | 软件包测试 | bash | test_bash_command_cat_003 | 测试bash命令cat的-b参数功能,验证其能够显示文件内容并显示非空行的行号。 |
| 169 | 软件包测试 | bash | test_bash_command_cat_004 | 测试bash命令cat的-e参数功能,验证其能够在每行末尾显示$符号。 |
| 170 | 软件包测试 | bash | test_bash_command_cat_005 | 测试bash命令cat的-s参数功能,验证其能够压缩连续的空白行为单行显示。 |
| 171 | 软件包测试 | bash | test_bash_command_cat_006 | 测试bash命令cat的-v参数功能,验证其能够显示非打印字符(除换行符和制表符外)的可见形式。 |
| 172 | 软件包测试 | bash | test_bash_command_cat_007 | 测试bash命令cat的-t参数功能,验证其能够将制表符显示为^i符号。 |
| 173 | 软件包测试 | bash | test_bash_command_cat_008 | 测试bash命令cat的-a参数功能,验证其能够显示文件内容并显示非打印字符(包括换行符和制表符)的可见形式。 |
| 174 | 软件包测试 | bash | test_bash_command_cat_009 | 测试bash命令cat的--show-ends参数功能,验证其能够在每行末尾显示$符号。 |
| 175 | 软件包测试 | bash | test_bash_command_cat_010 | 测试bash命令cat的--number参数功能,验证其能够显示文件内容并显示行号。 |
| 176 | 软件包测试 | bash | test_bash_command_cat_011 | 测试bash命令cat的--show-nonprinting参数功能,验证其能够显示非打印字符的可见形式。 |
| 177 | 软件包测试 | bash | test_bash_command_cat_012 | 测试bash命令cat的--show-tabs参数功能,验证其能够将制表符显示为^i符号。 |
| 178 | 软件包测试 | bash | test_bash_command_cat_013 | 测试bash命令cat的--show-all参数功能,验证其能够显示文件内容并显示非打印字符(包括换行符和制表符)的可见形式。 |
| 179 | 软件包测试 | bash | test_bash_command_cat_014 | 测试bash命令cat的--squeeze-blank参数功能,验证其能够压缩连续的空白行为单行显示。 |
| 180 | 软件包测试 | bash | test_bash_command_cat_015 | 测试bash命令cat的--number-nonblank参数功能,验证其能够显示文件内容并显示非空行的行号。 |
| 181 | 软件包测试 | bash | test_bash_command_cat_016 | 测试bash命令cat的--help参数功能,验证其能够显示帮助信息。 |
| 182 | 软件包测试 | bash | test_bash_command_cat_017 | 测试bash命令cat的--version参数功能,验证其能够显示版本信息。 |
| 183 | 软件包测试 | bash | test_bash_command_cat_018 | 测试bash命令cat的--show-nonprinting参数功能,验证其能够显示非打印字符的可见形式,但不包括换行符和制表符。 |
| 184 | 软件包测试 | bash | test_bash_command_cat_019 | 测试bash命令cat的--show-nonprinting参数功能,验证其能够显示非打印字符的可见形式,包括换行符和制表符。 |
| 185 | 软件包测试 | bash | test_bash_command_cat_020 | 测试bash命令cat的--show-ends参数功能,验证其能够在每行末尾显示$符号,且不显示非打印字符。 |
| 186 | 软件包测试 | bash | test_bash_command_cat_021 | 测试bash命令cat的--show-tabs参数功能,验证其能够将制表符显示为^i符号,但不显示其他非打印字符。 |
| 187 | 软件包测试 | bash | test_bash_command_touch_021 | 测试bash命令touch的--time=modify参数功能,验证其能够仅更新文件的修改时间戳。 |
| 188 | 软件包测试 | bash | test_bash_command_cat_022 | 测试bash命令cat的--show-all参数功能,验证其能够显示文件内容并显示非打印字符(包括换行符和制表符)的可见形式,且不显示行号。 |
| 189 | 软件包测试 | bash | test_bash_command_cat_023 | 测试bash命令cat的--show-nonprinting参数功能,验证其能够显示非打印字符的可见形式,但不包括换行符和制表符,且不显示行号。 |
| 190 | 软件包测试 | bash | test_bash_command_cat_024 | 测试bash命令cat的--show-nonprinting参数功能,验证其能够显示非打印字符的可见形式,包括换行符和制表符,且显示行号。 |
| 191 | 软件包测试 | bash | test_bash_command_cat_025 | 测试bash命令cat的--show-ends参数功能,验证其能够在每行末尾显示$符号,且显示行号。 |
| 192 | 软件包测试 | bash | test_bash_command_cat_026 | 测试bash命令cat的--show-nonprinting参数功能,验证其能够显示非打印字符的可见形式,但不包括换行符和制表符,且显示行号。 |
| 193 | 软件包测试 | bash | test_bash_command_cat_027 | 测试bash命令cat的--show-nonprinting参数功能,验证其能够显示非打印字符的可见形式,包括换行符和制表符,且不显示行号。 |
| 194 | 软件包测试 | bash | test_bash_command_cat_028 | 测试bash命令cat的--show-all参数功能,验证其能够显示文件内容并显示非打印字符(包括换行符和制表符)的可见形式,且显示行号。 |
| 195 | 软件包测试 | bash | test_bash_command_cat_029 | 测试bash命令cat的--show-tabs参数功能,验证其能够将制表符显示为^i符号,且显示行号。 |
| 196 | 软件包测试 | bash | test_bash_command_chmod_001 | 测试bash命令chmod的基本功能,验证其能够正确修改文件或目录的权限。 |
| 197 | 软件包测试 | bash | test_bash_command_chmod_002 | 测试bash命令chmod的-r参数功能,验证其能够递归修改目录及其子目录下的所有文件和目录的权限。 |
| 198 | 软件包测试 | bash | test_bash_command_chmod_003 | 测试bash命令chmod的-v参数功能,验证其能够显示详细的权限修改操作过程。 |
| 199 | 软件包测试 | bash | test_bash_command_chmod_004 | 测试bash命令chmod的-c参数功能,验证其能够仅在权限更改时显示详细信息。 |
| 200 | 软件包测试 | bash | test_bash_command_chmod_005 | 测试bash命令chmod的-f参数功能,验证其能够强制修改文件或目录的权限而不显示错误信息。 |
| 201 | 软件包测试 | bash | test_bash_command_chmod_006 | 测试bash命令chmod的--reference参数功能,验证其能够根据参考文件的权限修改目标文件或目录的权限。 |
| 202 | 软件包测试 | bash | test_bash_command_chmod_007 | 测试bash命令chmod的--preserve-root参数功能,验证其能够避免递归修改根目录的权限。 |
| 203 | 软件包测试 | bash | test_bash_command_chmod_008 | 测试bash命令chmod的--no-preserve-root参数功能,验证其能够递归修改根目录及其子目录下的所有文件和目录的权限。 |
| 204 | 软件包测试 | bash | test_bash_command_chmod_009 | 测试bash命令chmod的--quiet参数功能,验证其能够静默修改文件或目录的权限而不显示任何信息。 |
| 205 | 软件包测试 | bash | test_bash_command_chmod_010 | 测试bash命令chmod的--changes参数功能,验证其能够仅在权限更改时显示详细信息。 |
| 206 | 软件包测试 | bash | test_bash_command_chmod_011 | 测试bash命令chmod的--recursive参数功能,验证其能够递归修改目录及其子目录下的所有文件和目录的权限。 |
| 207 | 软件包测试 | bash | test_bash_command_chmod_012 | 测试bash命令chmod的--silent参数功能,验证其能够静默修改文件或目录的权限而不显示任何信息。 |
| 208 | 软件包测试 | bash | test_bash_command_chmod_013 | 测试bash命令chmod的--version参数功能,验证其能够显示版本信息。 |
| 209 | 软件包测试 | bash | test_bash_command_chmod_014 | 测试bash命令chmod的--help参数功能,验证其能够显示帮助信息。 |
| 210 | 软件包测试 | bash | test_bash_command_chmod_015 | 测试bash命令chmod的--verbose参数功能,验证其能够显示详细的权限修改操作过程。 |
| 211 | 软件包测试 | bash | test_bash_command_chmod_016 | 测试bash命令chmod的--reference参数功能,验证其能够根据参考文件的权限修改目标文件或目录的权限,且不显示详细信息。 |
| 212 | 软件包测试 | bash | test_bash_command_chmod_017 | 测试bash命令chmod的--reference参数功能,验证其能够根据参考文件的权限修改目标文件或目录的权限,且显示详细信息。 |
| 213 | 软件包测试 | bash | test_bash_command_chmod_018 | 测试bash命令chmod的--no-dereference参数功能,验证其能够修改符号链接本身的权限而非目标文件或目录的权限。 |
| 214 | 软件包测试 | bash | test_bash_command_chmod_019 | 测试bash命令chmod的--preserve-root参数功能,验证其能够避免递归修改根目录的权限,且不显示详细信息。 |
| 215 | 软件包测试 | bash | test_bash_command_chmod_020 | 测试bash命令chmod的--no-preserve-root参数功能,验证其能够递归修改根目录及其子目录下的所有文件和目录的权限,且不显示详细信息。 |
| 216 | 软件包测试 | bash | test_bash_command_chmod_021 | 测试bash命令chmod的--preserve-root参数功能,验证其能够避免递归修改根目录的权限,且显示详细信息。 |
| 217 | 软件包测试 | bash | test_bash_command_chmod_022 | 测试bash命令chmod的--reference参数功能,验证其能够根据参考文件的权限修改目标文件或目录的权限,且递归修改子目录权限。 |
| 218 | 软件包测试 | bash | test_bash_command_chmod_023 | 测试bash命令chmod的--reference参数功能,验证其能够根据参考文件的权限修改目标文件或目录的权限,且递归修改子目录权限,同时显示详细信息。 |
| 219 | 软件包测试 | bash | test_bash_command_chmod_024 | 测试bash命令chmod的--reference参数功能,验证其能够根据参考文件的权限修改目标文件或目录的权限,且递归修改子目录权限,同时不显示详细信息。 |
| 220 | 软件包测试 | bash | test_bash_command_chmod_025 | 测试bash命令chmod的--reference参数功能,验证其能够根据参考文件的权限修改目标文件或目录的权限,且递归修改子目录权限,同时静默操作。 |
| 221 | 软件包测试 | bash | test_bash_command_chmod_026 | 测试bash命令chmod的--preserve-root参数功能,验证其能够避免递归修改根目录的权限,且静默操作。 |
| 222 | 软件包测试 | bash | test_bash_command_chmod_027 | 测试bash命令chmod的--reference参数功能,验证其能够根据参考文件的权限修改目标文件或目录的权限,且递归修改子目录权限,同时显示详细信息,但不包括根目录。 |
| 223 | 软件包测试 | bash | test_bash_command_chmod_028 | 测试bash命令chmod的--no-preserve-root参数功能,验证其能够递归修改根目录及其子目录下的所有文件和目录的权限,且显示详细信息。 |
| 224 | 软件包测试 | bash | test_bash_command_chmod_029 | 测试bash命令chmod的--no-preserve-root参数功能,验证其能够递归修改根目录及其子目录下的所有文件和目录的权限,且静默操作。 |
| 225 | 软件包测试 | bash | test_bash_command_chmod_031 | 测试bash命令chmod的--no-preserve-root参数功能,验证其能够递归修改根目录及其子目录下的所有文件和目录的权限,且显示详细信息但不包括根目录。 |
| 226 | 软件包测试 | bash | test_bash_command_chmod_030 | 测试bash命令chmod的--reference参数功能,验证其能够根据参考文件的权限修改目标文件或目录的权限,且递归修改子目录权限,同时静默操作,但不包括根目录。 |
| 227 | 软件包测试 | bash | test_bash_command_chmod_032 | 测试bash命令chmod的--no-dereference参数功能,验证其能够修改符号链接本身的权限而非目标文件或目录的权限,且递归修改子目录权限。 |