Browse Source

Single line text refinements.

Peter Tripp 9 years ago
parent
commit
750580dbe6
4 changed files with 11 additions and 7 deletions
  1. 6 2
      pages/common/cal.md
  2. 1 1
      pages/common/ls.md
  3. 1 1
      pages/common/rename.md
  4. 3 3
      pages/common/srm.md

+ 6 - 2
pages/common/cal.md

@@ -10,9 +10,13 @@
 
 
 `cal -m {{month_number}}`
 `cal -m {{month_number}}`
 
 
-- Display all 12 months of calendar for a specific year:
+- Display a 12 month calendar for the current year:
 
 
-`cal 2013`
+`cal -y`
+
+- Display a 12 month calendar for a specific year:
+
+`cal 2016`
 
 
 - Display date of Easter (western churches):
 - Display date of Easter (western churches):
 
 

+ 1 - 1
pages/common/ls.md

@@ -14,7 +14,7 @@
 
 
 `ls -la`
 `ls -la`
 
 
-- Long format list with size displayed using human readable units (KB,MB,GB):
+- Long format list with size displayed using human readable units (KB, MB, GB):
 
 
 `ls -lh`
 `ls -lh`
 
 

+ 1 - 1
pages/common/rename.md

@@ -6,7 +6,7 @@
 
 
 `rename {{'s/foo/bar/'}} {{\*}}`
 `rename {{'s/foo/bar/'}} {{\*}}`
 
 
-- Dry-run, display which renames would occur without performing them:
+- Dry-run - display which renames would occur without performing them:
 
 
 `rename -n {{'s/foo/bar/'}} {{\*}}`
 `rename -n {{'s/foo/bar/'}} {{\*}}`
 
 

+ 3 - 3
pages/common/srm.md

@@ -3,15 +3,15 @@
 > Securely remove files or directories.
 > Securely remove files or directories.
 > Overwrites the existing data one or multiple times. Drop in replacement for rm.
 > Overwrites the existing data one or multiple times. Drop in replacement for rm.
 
 
-- Remove a file after a single pass overwriting with random data:
+- Remove a file after a single-pass overwriting with random data:
 
 
 `srm -s {{/path/to/file}}`
 `srm -s {{/path/to/file}}`
 
 
-- Remove a file after seven passes overwriting it with random data:
+- Remove a file after seven passes of overwriting with random data:
 
 
 `srm -m {{/path/to/file}}`
 `srm -m {{/path/to/file}}`
 
 
-- Recursively remove a directory and contents overwriting each file with a single pass of random data:
+- Recursively remove a directory and its contents overwriting each file with a single-pass of random data:
 
 
 `srm -r -s {{/path/to/folder}}`
 `srm -r -s {{/path/to/folder}}`