mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
bedtools, oc, sensible-editor, azcopy: fix typos and add oc project example (#4822)
This commit is contained in:
parent
b174740fb4
commit
71f4635d88
4 changed files with 7 additions and 3 deletions
|
@ -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`
|
||||
|
||||
|
|
|
@ -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}}`
|
||||
|
|
|
@ -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}}`
|
||||
|
|
|
@ -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`
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue