Ever have a CSV list you need to find a specific value for? Now you have an easily backpackable one! For context, a CSV list is a list of values separated by commas, (that's why it's a "Comma Separated Value, or CSV, list"). An example of a CSV list is, "horse,cat,scratch,program,gyarados,3.14" The only restriction on a CSV list is that the values can't contain the same character as the "separator", but you can easily fix this by turning it into a... BSV ("backslash separated value") list? because backslashes (\) are VERY uncommon, and often used for these purposes. Make sure you credit me if you use this script.