Posted 2021-10-15Updated 2021-10-15Linuxa minute read (About 175 words)命令行中的文件名或目录名若包含"#"号,别忘了添加转义12345$ mkdir c#zsh: no matches found: c#$ cd ./c#zsh: no matches found: ./c# 123456789101112131415161718192021222324252627282930$ mkdir c#zsh: no matches found: c## ganzhixiong @ ganzhixiongdeMacBook-Pro-3 in ~/temp [16:34:21] C:1$ mkdir c\## ganzhixiong @ ganzhixiongdeMacBook-Pro-3 in ~/temp [16:34:42] $ ltotal 472drwxr-xr-x 10 ganzhixiong staff 320B Oct 15 16:34 .drwxr-xr-x+ 178 ganzhixiong staff 5.6K Oct 15 16:34 ..-rw-r--r--@ 1 ganzhixiong staff 54K Sep 11 00:47 1.log-rw-r--r-- 1 ganzhixiong staff 545B Sep 16 11:16 2.log-rw-r--r-- 1 ganzhixiong staff 54K Sep 16 11:18 3.log-rw-r--r-- 1 ganzhixiong staff 54K Sep 16 11:21 4.log-rw-r--r-- 1 ganzhixiong staff 30B Sep 17 15:53 a.logdrwxr-xr-x 2 ganzhixiong staff 64B Oct 15 16:34 c#-rw-r--r-- 1 ganzhixiong staff 54K Sep 11 00:47 hs_err_pid1391.log-rw-r--r-- 1 ganzhixiong staff 17B Sep 16 12:08 苹果.log# ganzhixiong @ ganzhixiongdeMacBook-Pro-3 in ~/temp [16:34:45] $ cd c# zsh: no matches found: c## ganzhixiong @ ganzhixiongdeMacBook-Pro-3 in ~/temp [16:36:38] C:1$ cd c\#/# ganzhixiong @ ganzhixiongdeMacBook-Pro-3 in ~/temp/c# [16:36:42] $ echo "hello" # Linux 命令行或 Shell 中 # 号表示为注释,因此这样写不会报错hello 命令行中的文件名或目录名若包含"#"号,别忘了添加转义https://ganzhixiong.com/p/e77371fa/Author干志雄Posted on2021-10-15Updated on2021-10-15Licensed under Linux
2023-04-21Python3 报错 dyld cache '/System/Library/dyld/dyld_shared_cache_x86_64h' not loaded: syscall to map cache into shared region failedPython