From 260c255e8d73781c4a93ade527e7ad528637fef2 Mon Sep 17 00:00:00 2001 From: theo-l Date: Sat, 14 Mar 2015 06:17:31 -0300 Subject: [PATCH] updated --- ...9 15 Interview Questions on Linux 'ls ' Command--Part 1.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/translated/tech/20150309 15 Interview Questions on Linux 'ls ' Command--Part 1.md b/translated/tech/20150309 15 Interview Questions on Linux 'ls ' Command--Part 1.md index 5d72d1f9ca..60d41dd161 100644 --- a/translated/tech/20150309 15 Interview Questions on Linux 'ls ' Command--Part 1.md +++ b/translated/tech/20150309 15 Interview Questions on Linux 'ls ' Command--Part 1.md @@ -24,6 +24,7 @@ Unix或类Unix系统中的“文件列表”命令“ls”是最基础并且使 列出所有的文件。 ### 2. 你会如何只通过使用echo命令来列出目录中的所有文件?### + # echo */ ![List All Directories](http://www.tecmint.com/wp-content/uploads/2014/09/list-all-directories.gif) @@ -32,6 +33,7 @@ Unix或类Unix系统中的“文件列表”命令“ls”是最基础并且使 ### 3. 你会怎样列出一个目录中的所有文件, 包括隐藏的dot文件?### 答:我们需要将“-a”选项与“ls”命令一起使用。 + # ls -a ![List All Hidden Files](http://www.tecmint.com/wp-content/uploads/2014/09/list-all-hidden-files.gif) @@ -40,6 +42,7 @@ Unix或类Unix系统中的“文件列表”命令“ls”是最基础并且使 ### 4. 如何列出目录中除了 “当前目录暗喻(.)”和“父目录暗喻(..)”之外的所有文件,包括隐藏文件?### 答: 我们需要将“-A”选项与“ls”命令一起使用 + # ls -A ![Do Not List Implied](http://www.tecmint.com/wp-content/uploads/2014/09/Do-not-list-Implied.gif) @@ -48,6 +51,7 @@ Unix或类Unix系统中的“文件列表”命令“ls”是最基础并且使 ### 5. 如何将当前目录中的内容使用长格式打印列表?### 答: 我们需要将“-l”选项与“ls”命令一起使用。 + # ls -l ![List Files Long](http://www.tecmint.com/wp-content/uploads/2014/09/list-files-long.gif)