Alicia allows you to execute "crash" commands just as if you were using crash.
You can save the result of command with perl-like fashion and to edit using the perl functions.
Storing your process of analyzing Linux crash dump as perl script and Calling your script from command line or another script. These scripts are called 'LDAS'. LDAS is the Linux dump analysis script.
Alicia has some functions (commands) to get particular data from Linux crash dump in order to create program easily.
Returns the value of structure member.
Example: alicia> $a = kernel '0xf46ec000','task_struct','comm','char *'; alicia> $b = kernel '0xf46ec000','task_struct','mm';
Returns the data(words) from symbol's address.
Example: alicia> @lists = get_mem '0xf46ec000',10; alicia> foreach (@lists) { print "$_\n" };
Returns the value of symbol.
Example: alicia> print get_value 'banner';
Returns the address of symbol.
Example: alicia> print get_addr 'banner';
All Rights Reserved, Copyright © 2005, UNIADEX, Ltd.