# acro-rs This was done to help me query a csv file with acronyms and their meanings. But I guess it can be used for any csv file that has two columns of which you want to use one to get the other. ## Installation ### With cargo ```cargo install acro``` ### With homebrew ``` brew tap nilventosa/acro brew install acro ``` ## Usage ```acro [OPTIONS] ``` Arguments: - `````` the acronym to query Options (short, long, env variable): - **-f, --file, ACRO_FILE \** _the csv file with the acronyms and definitions_ - **-a, --acro, ACRO_COLUMN ** _the column with the acronyms [default: 1]_ - **-d, --definition, DEFINITION_COLUMN ** _the column with the definitions [default: 2]_ - **-D, --delimiter, ACRO_DELIMITER \** _delimiter character between columns [default: ',']_ - **-H, --header, ACRO_HEADER** _flag if there is a header line_ - **-c, --color, ACRO_COLOR** _disables color output_ - **-h, --help** _Print help information_ - **-V, --version** _Print version information_