cat: remove examples with the option "-u" (#11983)

pull/23/head
Alejandro Cervera 2024-01-02 20:44:34 -05:00 committed by GitHub
parent 10357b3fc0
commit cdfd3cd17b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 0 additions and 16 deletions

View File

@ -15,10 +15,6 @@
`cat {{फ़ाइल1/का/पथ फ़ाइल2/का/पथ ...}} >> {{आउटपुट_फ़ाइल/का/पथ}}`
- फ़ाइल की सामग्री को अनबफर्ड ([u]nbuffered) मोड में आउटपुट फ़ाइल में कॉपी करें:
`cat -u {{/dev/tty12}} > {{/dev/tty13}}`
- फ़ाइल में `stdin` लिखें:
`cat - > {{फ़ाइल/का/पथ}}`

View File

@ -15,10 +15,6 @@
`cat {{ഫയൽ1/ലേക്കുള്ള/പാത ഫയൽ2/ലേക്കുള്ള/പാത ...}} >> {{ഔട്ട്പുട്ട്_ഫയൽ/ലേക്കുള്ള/പാത}}`
- ഫയലിന്റെ ഉള്ളടക്കം അൺബഫേർഡ് മോഡിൽ ഒരു ഔട്ട്പുട്ട് ഫയലിലേക്ക് കോപ്പിചെയ്യുവാൻ:
`cat -u {{/dev/tty12}} > {{/dev/tty13}}`
- `stdin` ഫയലിലേക്ക് എഴുതുവാൻ:
`cat - > {{ഫയലിലേക്കുള്ള/പാത}}`

View File

@ -15,10 +15,6 @@
`cat {{caminho/para/arquivo1 caminho/para/arquivo2 ...}} >> {{caminho/para/arquivo_de_saída}}`
- Copia o conteúdo de um arquivo para um arquivo de saída no modo sem buffer:
`cat -u {{/dev/tty12}} > {{/dev/tty13}}`
- Escreve a `stdin` em um arquivo:
`cat - > {{caminho/para/arquivo}}`

View File

@ -15,10 +15,6 @@
`cat {{path/to/file1 path/to/file2 ...}} >> {{path/to/output_file}}`
- Copy the contents of a file into an output file in [u]nbuffered mode:
`cat -u {{/dev/tty12}} > {{/dev/tty13}}`
- Write `stdin` to a file:
`cat - > {{path/to/file}}`