cp -r .

Clash Royale CLAN TAG#URR8PPP
up vote
-2
down vote
favorite
I run the command cp -r <Folder Name> .<Folder Name>. It have done something, but I cannot find it.
Example:
cp -r Agent .Agent.old # (There is a dot symbol on the 2nd folder name)
linux cp dot-files
add a comment |Â
up vote
-2
down vote
favorite
I run the command cp -r <Folder Name> .<Folder Name>. It have done something, but I cannot find it.
Example:
cp -r Agent .Agent.old # (There is a dot symbol on the 2nd folder name)
linux cp dot-files
2
since the new directory starts with a dot, it is hidden. You would be able to see it withls -a
â amisax
Aug 13 at 5:18
1
Please add a more descriptive title
â Chrips
Aug 13 at 8:02
1
cp -ris a vendor unique, do not use it, but rathercp -R.
â schily
Aug 13 at 14:22
add a comment |Â
up vote
-2
down vote
favorite
up vote
-2
down vote
favorite
I run the command cp -r <Folder Name> .<Folder Name>. It have done something, but I cannot find it.
Example:
cp -r Agent .Agent.old # (There is a dot symbol on the 2nd folder name)
linux cp dot-files
I run the command cp -r <Folder Name> .<Folder Name>. It have done something, but I cannot find it.
Example:
cp -r Agent .Agent.old # (There is a dot symbol on the 2nd folder name)
linux cp dot-files
linux cp dot-files
edited Aug 13 at 10:07
Jeff Schaller
32.5k849110
32.5k849110
asked Aug 13 at 5:14
user305137
61
61
2
since the new directory starts with a dot, it is hidden. You would be able to see it withls -a
â amisax
Aug 13 at 5:18
1
Please add a more descriptive title
â Chrips
Aug 13 at 8:02
1
cp -ris a vendor unique, do not use it, but rathercp -R.
â schily
Aug 13 at 14:22
add a comment |Â
2
since the new directory starts with a dot, it is hidden. You would be able to see it withls -a
â amisax
Aug 13 at 5:18
1
Please add a more descriptive title
â Chrips
Aug 13 at 8:02
1
cp -ris a vendor unique, do not use it, but rathercp -R.
â schily
Aug 13 at 14:22
2
2
since the new directory starts with a dot, it is hidden. You would be able to see it with
ls -aâ amisax
Aug 13 at 5:18
since the new directory starts with a dot, it is hidden. You would be able to see it with
ls -aâ amisax
Aug 13 at 5:18
1
1
Please add a more descriptive title
â Chrips
Aug 13 at 8:02
Please add a more descriptive title
â Chrips
Aug 13 at 8:02
1
1
cp -r is a vendor unique, do not use it, but rather cp -R.â schily
Aug 13 at 14:22
cp -r is a vendor unique, do not use it, but rather cp -R.â schily
Aug 13 at 14:22
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
Prefixing the file name with a dot (.) is usually considered as hidden files. This folder copying should have done in the same way.
try to list hidden items by.
ls -la .Agent.old
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
Prefixing the file name with a dot (.) is usually considered as hidden files. This folder copying should have done in the same way.
try to list hidden items by.
ls -la .Agent.old
add a comment |Â
up vote
1
down vote
accepted
Prefixing the file name with a dot (.) is usually considered as hidden files. This folder copying should have done in the same way.
try to list hidden items by.
ls -la .Agent.old
add a comment |Â
up vote
1
down vote
accepted
up vote
1
down vote
accepted
Prefixing the file name with a dot (.) is usually considered as hidden files. This folder copying should have done in the same way.
try to list hidden items by.
ls -la .Agent.old
Prefixing the file name with a dot (.) is usually considered as hidden files. This folder copying should have done in the same way.
try to list hidden items by.
ls -la .Agent.old
edited Aug 13 at 6:45
roaima
40.3k547110
40.3k547110
answered Aug 13 at 5:20
msp9011
3,46643862
3,46643862
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f462215%2fcp-r-folder-name-folder-name%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
2
since the new directory starts with a dot, it is hidden. You would be able to see it with
ls -aâ amisax
Aug 13 at 5:18
1
Please add a more descriptive title
â Chrips
Aug 13 at 8:02
1
cp -ris a vendor unique, do not use it, but rathercp -R.â schily
Aug 13 at 14:22