diff --git a/languages/bash.sh b/languages/bash.sh index 03b7cb0..104a68a 100644 --- a/languages/bash.sh +++ b/languages/bash.sh @@ -1,6 +1,6 @@ ############################################################################## # BASH CHEATSHEET (中文速查表) - by skywind (created on 2018/02/14) -# Version: 42, Last Modified: 2018/03/21 10:09 +# Version: 43, Last Modified: 2018/04/02 17:00 # https://github.com/skywind3000/awesome-cheatsheets ############################################################################## @@ -538,7 +538,6 @@ n>| file # 强制将文件描述符 n的输出重定 n<> file # 同时使用文件作为文件描述符 n 的输出和输入 n> file # 重定向文件描述符 n 的输出到文件 n< file # 重定向文件描述符 n 的输入为文件内容 -n<<< "hello" # 重定向文件描述符 n 的输入为字符串内容 n>& # 将标准输出 dup/合并 到文件描述符 n n<& # 将标准输入 dump/合并 定向为描述符 n n>&m # 文件描述符 n 被作为描述符 m 的副本,输出用