From 71f4635d88d0071425a5ee00ad1de49cefa763ac Mon Sep 17 00:00:00 2001 From: siavash Date: Sat, 24 Oct 2020 16:28:11 +0330 Subject: [PATCH] bedtools, oc, sensible-editor, azcopy: fix typos and add oc project example (#4822) --- pages/common/bedtools.md | 2 +- pages/common/oc.md | 4 ++++ pages/linux/sensible-editor.md | 2 +- pages/windows/azcopy.md | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/pages/common/bedtools.md b/pages/common/bedtools.md index 6def14a56..332fc3d4b 100644 --- a/pages/common/bedtools.md +++ b/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` diff --git a/pages/common/oc.md b/pages/common/oc.md index 6078989e9..f789aa5ed 100644 --- a/pages/common/oc.md +++ b/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}}` diff --git a/pages/linux/sensible-editor.md b/pages/linux/sensible-editor.md index 649785501..d105aa2ad 100644 --- a/pages/linux/sensible-editor.md +++ b/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}}` diff --git a/pages/windows/azcopy.md b/pages/windows/azcopy.md index a19aabc73..685ffe124 100644 --- a/pages/windows/azcopy.md +++ b/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`