Changes between Version 7 and Version 8 of cypress/BasicLinuxComands


Ignore:
Timestamp:
08/18/15 20:07:30 (9 years ago)
Author:
cmaggio
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • cypress/BasicLinuxComands

    v7 v8  
    183183== Intermediate Linux Commands ==
    184184
     185=== ls again ===
     186The 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
     190total 4
     191drwxr-xr-x 2 tuhpc002 workshop 4096 Aug 18 16:17 NextDirectoryDown
     192[tulaneID@cypress1 ~]$ ls -al
     193total 56
     194drwx------ 6 tuhpc002 workshop 4096 Aug 18 20:03 .
     195drwxr-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
     201drwxr-xr-x 2 tuhpc002 workshop 4096 Nov 11  2010 .gnome2
     202-rw-r--r-- 1 tuhpc002 workshop  171 Aug  6  2014 .kshrc
     203drwxr-xr-x 4 tuhpc002 workshop 4096 Aug  6  2014 .mozilla
     204drwxr-xr-x 2 tuhpc002 workshop 4096 Aug 18 16:17 NextDirectoryDown
     205drwx------ 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
    185211=== quota ===
    186212Display disk quotas.