• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Ubuntu - Find files / Text

Xleniz

New Member
Joined
Jul 6, 2009
Messages
178
Reaction score
3
Location
Sweden
Yo, now I'll learn how to find files / text in files. It goes very fast in many linux distros.
Faster than windows? ofc!!!

Warning:
Misuse of these commands, makes it search too many files.
If your search wont stop, press ctrl+c to close script (works for programs too)


First get inside OTSERV data folder with terminal
Then:

find file:
Code:
find -name fire*.lua
(will return all files that starts with fire and ends with lua)

find itemid of an item:
Code:
grep 2120 */items.xml
(will return all items starting with 2120 inside of items.xml)

find health of a monster:
Code:
grep "health now" */*/rat.xml
(will return health now and max of rat.xml)

(asterisk * means "any" in linux)

Possibilities are endless !!!!
Good luck.
 
Last edited:
Back
Top