Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place! |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
11-20-2016, 07:28 AM
|
#1
|
LQ Newbie
Registered: Aug 2012
Posts: 2
Rep: 
|
by default command arguments
Is the command cp in bash is by default set on --preserve ?
|
|
|
11-20-2016, 07:58 AM
|
#2
|
Senior Member
Registered: Dec 2011
Location: Simplicity
Distribution: Mint/MATE
Posts: 3,020
|
No.
In bash you can define a function
Code:
cp(){
command cp --preserve "$@"
}
then a simple cp will be like that.
|
|
|
11-20-2016, 08:26 AM
|
#3
|
LQ Guru
Registered: Sep 2009
Location: Perth
Distribution: Arch
Posts: 10,031
|
Or set up an alilas
|
|
|
11-20-2016, 09:21 AM
|
#4
|
LQ Addict
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 23,652
|
see man cp:
Code:
--preserve[=ATTR_LIST]
preserve the specified attributes (default: mode,ownership,timestamps), if possible additional attributes: context,
links, xattr, all
|
|
|
11-20-2016, 09:23 AM
|
#5
|
LQ Newbie
Registered: Aug 2012
Posts: 2
Original Poster
Rep: 
|
I do not really understand.
The manual system [1]there are two mutually exclusive options: --preserve and --no-preserve. Logic suggests that one of option must be the default.
[1] http://man7.org/linux/man-pages/man1/cp.1.html
|
|
|
11-20-2016, 09:31 AM
|
#6
|
LQ Addict
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 23,652
|
the default what is written as default and is highlighted in my previous post:
(default: mode,ownership,timestamps)
so by default these attributes are preserved, others are not.
|
|
|
11-20-2016, 09:46 AM
|
#7
|
LQ Guru
Registered: Sep 2009
Location: Perth
Distribution: Arch
Posts: 10,031
|
As pointed out by pan64, your assumption is wrong as there are some default options preserved but not all, so --preserve allows you to preserve more than the default and --no-preserve allows you to remove all that may have been preserved, either by default or a previous setting.
|
|
|
All times are GMT -5. The time now is 09:14 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|