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
| #!/bin/bash | |
| # Check a list of serial numbers for eligibility in the 2015 MacBook Pro battery replacement recall | |
| # Returns only eligible serial numbers | |
| # The text file must be formatted with Unix (LF) line breaks | |
| # | |
| # Usage: mbpserialcheck.sh /path/to/inputfile.txt | |
| # | |
| # To output directly to a CSV file: mbpserialcheck.sh /path/to/inputfile.txt > /path/to/outputfile.csv | |
| # |