This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
This script will prepend supplied value to the Full Name field | |
of every selected record. | |
} | |
unit UserScript; | |
var | |
s: string; | |
function Initialize: integer; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Just put bash colors' codes into variables for more suitable use. | |
declare -A color=( | |
['black']='\e[0;30m' # Black - Regular | |
['red']='\e[0;31m' # Red | |
['green']='\e[0;32m' # Green | |
['yellow']='\e[0;33m' # Yellow | |
['blue']='\e[0;34m' # Blue | |
['purple']='\e[0;35m' # Purple | |
['cyan']='\e[0;36m' # Cyan |