linux 终端接口,Linux终端命令接口(十一)硬链接与软连接
一、进入终端 输入 使用 ls -l 即可.示例:$ touch file1 # 创建新文件 file1$ touch file2 # 创建新文件 file2$ ln file1 file3 # 为 file1 创建硬链接 file3$ ls -ltotal 0-rw-r--r-- 2 root root 0 01-25 16:59 file1-rw-r--r--...