mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-05 19:05:59 +02:00
cat: add Norwegian translation (#7172)
This commit is contained in:
parent
cfb339a2d5
commit
d974303e2e
1 changed files with 24 additions and 0 deletions
24
pages.no/common/cat.md
Normal file
24
pages.no/common/cat.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
# cat
|
||||
|
||||
> Skriv ut og sammenføy filer.
|
||||
> Mer informasjon: <https://www.gnu.org/software/coreutils/cat>.
|
||||
|
||||
- Skriv ut innholdet i en fil til standard utgang:
|
||||
|
||||
`cat {{fil}}`
|
||||
|
||||
- Sammenføy flere filer til en målfil:
|
||||
|
||||
`cat {{fil1}} {{fil2}} > {{målfil}}`
|
||||
|
||||
- Legg til flere filer til målfilen:
|
||||
|
||||
`cat {{fil1}} {{fil2}} >> {{målfil}}`
|
||||
|
||||
- Nummerer alle utgangslinjer:
|
||||
|
||||
`cat -n {{fil}}`
|
||||
|
||||
- Vis tegn som ikke kan skrives ut og mellomrom (med `M-` prefiks hvis det ikke er ASCII-tegn):
|
||||
|
||||
`cat -v -t -e {{fil}}`
|
Loading…
Add table
Reference in a new issue