标题说明-LA在ls命令中做了什么?
我试过阅读ls的手册,这就是它所说的:
-A List all entries except for . and ... Always set for the super-user.
-L Follow all symbolic links to final target and list the file or directory the link references rather than the link itself. This option cancels the -P
option.
但我不太确定这些是什么意思。
答案 0 :(得分:0)
ls
命令打印当前目录中的文件和文件夹列表。
使用ls -A
时,该命令会打印出当前目录中的所有文件和文件夹。这包括隐藏的文件和文件夹(如文件/文件夹以点开头)。但是,.
(当前目录)和..
(父目录)将被忽略。
使用ls -L
时,命令将遵循符号链接并打印出引用的位置。
当合并这2个选项时,你会得到ls -LA
,它会打印出所有文件和文件夹的列表,并打印出对文件夹中符号链接的引用。
在终端试试吧。你会看到差异。