Search Results

0
votes

Automatically replacing variables with #defines

You can't do exactly what you want, since by the time the compiler gets the pre-processor output, the "ONE" token is long gone. However, if your goal is to write the list of constants once but gene …
0
votes

Case Insensitive comparision of strings in Shell script

One way would be to convert both strings to upper or lower: test $(echo "string" | /bin/tr -s '[:upper:]' '[:lower:]') = $(echo "String" | /bin/tr -s '[:upper:]' '[:lower:]') && …