1 # CSV Export custom processing example
2 # (should be name according to the csv export id : 1.yaml for example)
9 # Adding a trailer at the end of the CSV file
10 $output .= "This is a trailer";
13 # Adding "Word " before each 001
14 if ($marcfield eq '001') { $value = 'Word ' . $value; }