If you can see this check that
| next section | prev section | up | prev page | next page |
Wildcard characters are often useful when you want to move or copy multiple files from one directory to another. For example, suppose you have two directories immediately below your current directory, named 'new' and 'old', and these directories contain the following files:
% ls new myfile myfile2 % ls old myfile3 myfile4
To move all the files from the directory 'new' into the directory 'old', we would type:
% mv new/* old % ls new ( no files in new) % ls old ( all files are now in old) myfile myfile2 myfile3 myfile4
We can do a similar operation with the cp command. For example, to copy all the files from old into new, we could type:
% cp old/* new
Similarly, we can use wildcard characters with the rm command. For example, to remove all of the files in the directory new, type:
% rm new/* % ls new ( all the files are now gone )
Warning: be careful when using wildcard that you do not accidentally remove or move files that you need.
| Linux tutorials: | intro1 intro2 wildcard permission pipe vi essential admin net fwall DNS diag Apache1 Apache2 MySQL1 MySQL2 |
| Caine 3.0: | Essentials | Basic | Search | SysIntro | 5a | 5b | 5c | 6 | 7 | 8a | 8b | WebBrowserA | WebBrowserB | Registry |
| Useful: | Quiz | Forums | Privacy Policy | Terms and Conditions |
| Site Links: | XMLZoo ActiveSQL ProgZoo SQLZoo |
Copyright @ 2004-2012 Gordon Russell. All rights reserved.