How can I copy all files which starts with "b" or "B" from /bin to a specific folder?
I tried cp /bin* b
, but I didn't succeed.
How can I copy all files which starts with "b" or "B" from /bin to a specific folder?
I tried cp /bin* b
, but I didn't succeed.
Use:
The right command is:
You will probably get this error:
That's because there should be no files starting with 'B'. However you shouldn't worry.