From 8bcd9b733455864adfd33b036a41c84b9a641854 Mon Sep 17 00:00:00 2001 From: anthonyjvoss Date: Mon, 11 Feb 2019 19:07:18 -0600 Subject: [PATCH] Added ls -la example for file details. (#28130) --- guide/english/bash/bash-ls/index.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/guide/english/bash/bash-ls/index.md b/guide/english/bash/bash-ls/index.md index e213e9fd89..0066e0e1b0 100644 --- a/guide/english/bash/bash-ls/index.md +++ b/guide/english/bash/bash-ls/index.md @@ -40,6 +40,19 @@ README.md gatsby-node.js static assets gatsby-ssr.js translations ``` +### Example: + +List files with details in `home/user/docs` + +```bash +ls -la +total 4 +-rwxrwx--- 1 root root 5514 Feb 4 2018 log1.txt +-rwxrwx--- 1 root root 1024 Feb 5 2018 colors.txt +-rwxrwx--- 1 root root 112 Feb 8 2018 output.txt +-rwxrwx--- 1 root root 514 Feb 9 2018 notes.txt +``` + #### More Information: * [Wikipedia](https://en.wikipedia.org/wiki/Ls)