
Important note regarding Python scripts
---------------------------------------
	(nb_records.py, set_default_country.py, show_phonebook.py)

The first line of these script can be changed to
	#! /usr/bin/gabyscript ...	(note the '!')
					(check the path)

They may then be turned to executables (chmod +x) and executed:

 $ ./show_phonebook.py | head -5 
First Name          Last Name           Phone           
----------------------------------------------------
Jonathan            Vervier             253.18.71           
Valentine           Wattiez             252.39.86           
Mike                pol                 04/337.36.37        

[the reason for the absence of '#!' is that it causes some problems with
packages managers trying to be smarter than you...]

