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

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

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

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

Naba Barkakati

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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








mv



Purpose


Rename files and directories or move them from one directory to another.


Syntax


mv [options]

source destination


Options


-b makes backup copies of files being moved or renamed.

-f removes existing files without prompting.

-i prompts before overwriting any existing files.

-v displays the name of the file before moving it.


Description


The

mv command either renames a file or moves it to another directory. The command works on either plain files or directories. Thus, you can rename the file

sample to

sample.old with the command

mv sample sample.old . On the other hand, you can move the file

/tmp/sample to

/usr/local/sample with the command

mv /tmp/sample /usr/local/sample .


/ 341