Use the konsole and cd into the appropriate directory, the one where all the text files you wish to merge are saved, and then simply issue the command.
He writes in his post :
cat *.* > /root/bigfile.txt
Where/what exactly i do with this command?Where i put it?
Use the konsole and cd into the appropriate directory, the one where all the text files you wish to merge are saved, and then simply issue the command.
-Monkeys are like nature's humans.
Hey heloo,
it would be usefull if you start a post people can understand!
I think you are talking about the thread from -=Xploitz=- where he shares his wordlists.
And if you don't know what to do with the command... maybe stop it and start at the very beginning of linux basics.
Anyway , run the command to pull all the wordlists into one big one..cat *.* > /root/bigfile.txt
Make sure you are in the right directory.
*nerved from work*
ed: =Tron= was faster
Be sensitive in choosing where you ask your question. You are likely to be ignored, or written off as a loser, if you:
* post your question to a forum where it's off topic
* post a very elementary question to a forum where advanced technical questions are expected, or vice-versa
* cross-post to too many different newsgroups
* post a personal e-mail to somebody who is neither an acquaintance of yours nor personally responsible for solving your problem
You seem to be lacking in basic Linux understanding, as terminal86 states, and you should concentrate on getting familiar with basic commands before you try out the more advanced tools in BT. However try issuing the following two commands in the konsole (also often referred to as the command line or terminal):This will merge all the files in your pass directory into a single text file called bigfile.txt, which will be created in the same directory. Make sure that you do not have any other files in the same directory, for example executables, as these will corrupt the bigfile.txtCode:cd "/mnt/sda1/Program Files/pass" cat *.* > bigfile.txt
-Monkeys are like nature's humans.
Keep in mind that when doing this the destination drive will require enough capacity to store essentially a second set of files. i.e.: If the files in "/mnt/sda1/Program Files/pass" take up 600MB once you "cat *.* > bigfile.txt" bigfile.txt will end up in the same directory on the same drive and also be ~600MB. (So basically you better hope the drive is at least 1.2GB)
(Note the sizes/capacities above are fictional).
Also if you wanted to put bigfile.txt on another drive you'd have to specify the output location (lets assume your HD is hda1) the command would be something like:
Code:cat *.* > /mnt/hda1/pass/bigfile.txt
I'm a compulsive post editor, you might wanna wait until my post has been online for 5-10 mins before quoting it as it will likely change.
I know I seem harsh in some of my replies. SORRY! But if you're doing something illegal or posting something that seems to be obvious BS I'm going to call you on it.
Be sensitive in choosing where you ask your question. You are likely to be ignored, or written off as a loser, if you:
* post your question to a forum where it's off topic
* post a very elementary question to a forum where advanced technical questions are expected, or vice-versa
* cross-post to too many different newsgroups
* post a personal e-mail to somebody who is neither an acquaintance of yours nor personally responsible for solving your problem
I'm a compulsive post editor, you might wanna wait until my post has been online for 5-10 mins before quoting it as it will likely change.
I know I seem harsh in some of my replies. SORRY! But if you're doing something illegal or posting something that seems to be obvious BS I'm going to call you on it.