Browse Source

bedtools, oc, sensible-editor, azcopy: fix typos and add oc project example (#4822)

siavash 4 years ago
parent
commit
71f4635d88
4 changed files with 7 additions and 3 deletions
  1. 1 1
      pages/common/bedtools.md
  2. 4 0
      pages/common/oc.md
  3. 1 1
      pages/linux/sensible-editor.md
  4. 1 1
      pages/windows/azcopy.md

+ 1 - 1
pages/common/bedtools.md

@@ -20,7 +20,7 @@
 
 `bedtools groupby -i {{path/to/file}} -c 1-3,5 -g 6 -o sum`
 
-- Convert bam-formated file to a bed-formated one:
+- Convert bam-formatted file to a bed-formatted one:
 
 `bedtools bamtobed -i {{path/to/file}}.bam > {{path/to/file}}.bed`
 

+ 4 - 0
pages/common/oc.md

@@ -12,6 +12,10 @@
 
 `oc new-project {{project_name}}`
 
+- Switch to an existing project:
+
+`oc project {{project_name}}`
+
 - Add a new application to a project:
 
 `oc new-app {{repo_url}} --name {{application}}`

+ 1 - 1
pages/linux/sensible-editor.md

@@ -14,6 +14,6 @@
 
 `sensible-editor +10 {{file}}`
 
-- Open 3 files in vertically splitted editor windows at the same time:
+- Open 3 files in vertically split editor windows at the same time:
 
 `sensible-editor -O3 {{file_1}} {{file_2}} {{file_3}}`

+ 1 - 1
pages/windows/azcopy.md

@@ -19,7 +19,7 @@
 
 `azcopy copy 'https://{{source-storage-account-name}}.blob.core.windows.net/{{container-name}}' 'https://{{destination-storage-account-name}}.blob.core.windows.net/{{container-name}}'`
 
-- Syncronise a local directory and delete files in the destination if they no longer exist in the source:
+- Synchronize a local directory and delete files in the destination if they no longer exist in the source:
 
 `azcopy sync '{{path/to/source}}' 'https://{{storage-account-name}}.blob.core.windows.net/{{container-name}}' --recursive --delete-destination=true`