| 185 | === ls again === |
| 186 | The behavior of the '''ls''' command can be modified by the addition of option flags. By default '''ls''' does not list any "hidden" files and subdirectories. To display all files and subdirectories one must add the ''-a'' flag. |
| 187 | |
| 188 | {{{ |
| 189 | [tulaneID@cypress1 ~]$ ls -l |
| 190 | total 4 |
| 191 | drwxr-xr-x 2 tuhpc002 workshop 4096 Aug 18 16:17 NextDirectoryDown |
| 192 | [tulaneID@cypress1 ~]$ ls -al |
| 193 | total 56 |
| 194 | drwx------ 6 tuhpc002 workshop 4096 Aug 18 20:03 . |
| 195 | drwxr-xr-x 5 root root 4096 Aug 12 13:00 .. |
| 196 | -rw------- 1 tuhpc002 workshop 107 Aug 18 16:59 .bash_history |
| 197 | -rw-r--r-- 1 tuhpc002 workshop 18 Jul 18 2013 .bash_logout |
| 198 | -rw-r--r-- 1 tuhpc002 workshop 176 Jul 18 2013 .bash_profile |
| 199 | -rw-r--r-- 1 tuhpc002 workshop 124 Sep 30 2014 .bashrc |
| 200 | -rw-r--r-- 1 tuhpc002 workshop 500 May 7 2013 .emacs |
| 201 | drwxr-xr-x 2 tuhpc002 workshop 4096 Nov 11 2010 .gnome2 |
| 202 | -rw-r--r-- 1 tuhpc002 workshop 171 Aug 6 2014 .kshrc |
| 203 | drwxr-xr-x 4 tuhpc002 workshop 4096 Aug 6 2014 .mozilla |
| 204 | drwxr-xr-x 2 tuhpc002 workshop 4096 Aug 18 16:17 NextDirectoryDown |
| 205 | drwx------ 2 tuhpc002 workshop 4096 Aug 13 16:18 .ssh |
| 206 | -rw------- 1 tuhpc002 workshop 1786 Aug 18 20:03 .viminfo |
| 207 | -rw------- 1 tuhpc002 workshop 54 Aug 13 16:18 .Xauthority |
| 208 | [tulaneID@cypress1 ~]$ |
| 209 | }}} |
| 210 | |