This is the P2PU Archive. If you want the current site, go to www.p2pu.org!
You haven't posted any discussions yet.
With this video you learn how to create files, directories, and other useful utilities.
If you have any questions let me know.
Download Link:
https://rapidshare.com/files/2740503162/UsefulFileSystemCommands.mp4
Hi Frank.
You mention to that 'find / -name 'test' will find all files in / and below with 'test' in them
Would this command not be more fitting for that description 'find / -name 'test*' ?
Using the asterisk would be good if you are looking for any file that starts with the word test. For instance
test* would give you any file that starts with the word test.
*test would give you any file that ends with the word test.
*test* would find you any file that contains the word test.