Files
mastering-unix-ss/chapter17/function_load_EXCEPTIONS_data
Fabio Scotto di Santolo 4cc88d2f6e initial commit
2020-07-28 19:28:25 +02:00

9 lines
177 B
Plaintext
Executable File

function load_EXCEPTIONS_data
{
# Ingore any line that begins with a pound sign, #
# and omit all blank lines
cat $EXCEPTIONS | grep -v "^#" | sed /^$/d > $DATA_EXCEPTIONS
}