Linux [Electronic resources] نسخه متنی

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

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

Linux [Electronic resources] - نسخه متنی

Janet Valade

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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


cp (copy files)


Copies a file into a new file or into a new directory with the same name. If the new file already exists, copy overwrites the existing file with the new file.

Format: cp

filename filename
Examples: cp prog1 prog2
cp prog1 /home/janet

The second example copies prog1 into /home/janet/prog1. After a cp command, two files exist: the original file plus the new file it was copied into.

Opt

What It Does

Example

-i

Prompt before overwriting a file

cp -i report1 report2

-v

Display name of file being copied

cp -v rep1 dir1


    / 357