Disclaimer


Programs must be written for people to read, and only incidentally for machines to execute.

― Harold Abelson, Structure and Interpretation of Computer Programs

So, take a read through this snippet of code (comments?)

function disclaimer()
{

echo -e  "[!] Read the Disclaimer below";
echo;
#
# This Guide/Tool is an attempt to explain the commands or
# instructions involved while building any ROM, and is not meant
# to be used as a time-saver/shortcut tool.
#
# This tool doesn't make you a ROM wizard/magician/[insert-a-fancy-term]
#
# This tool doesn't guarantee a successful attempt.
#
# This tool tries to reduce the efforts required by a newbie to
# Google about certain terminologies involved in building Android from
# Source with information which is complete to the best of our
# knowledge
, gathered from various developers who like to share their
# knowledge with the community.
#
# Before any Developer can start off with ROM Development, it is also
# equally necessary to know how the BuildSystem works
# Yes, it builds the ROM for you - not ScriBt.
#
# Programming Knowledge is not necessary for Compilation, but is
# recommended to help contribute to any ROM/Device's Development.
#
# All product names, logos, and brands are property of their respective
# owners. All company, product and service names used in this website
# are for identification purposes only. Use of these names, logos,
# and brands does not imply endorsement.
#
echo;
echo -e  "[!] If you've read it till here, Thank You";

}  # disclaimer