Red Hat Linux 9 Professional Secrets [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Red Hat Linux 9 Professional Secrets [Electronic resources] - نسخه متنی

Naba Barkakati

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید








cat



Purpose


Copy contents of a file to standard output (the screen).


Syntax


cat [-benstvA]

files


Options


-b numbers nonblank lines.

-e shows each end-of-line (as

$ ) and all nonprinting characters.

-n numbers all output lines starting with number 1.

-s replaces multiple blank lines with a single blank line.

-t shows tabs as

^I .

-v shows nonprinting characters.

-A shows all characters (including nonprinting ones).


Description


Typically,

cat is used to display the contents of a file or to concatenate several files into a single file. For example,

cat file1 file2 file3 >

all combines three files into a single file named

all .


/ 341