1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-28 23:17:58 +01:00

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

This commit is contained in:
siavash 2020-10-24 16:28:11 +03:30 committed by GitHub
parent b174740fb4
commit 71f4635d88
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 3 deletions

View file

@ -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`

View file

@ -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}}`

View file

@ -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}}`

View file

@ -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`