Jonas Devlieghere acc56e55fe
[lldb] Expand $ when using tcsh
Unlike for any of the other shells, we were escaping $ when using tcsh.
There's nothing special about $ in tcsh and this prevents you from
expanding shell variables, one of the main reasons this functionality
exists in the first place.

Differential revision: https://reviews.llvm.org/D123690
2022-04-13 13:01:09 -07:00

7 lines
118 B
C

#include <stdio.h>
int main(int argc, char **argv) {
for (int i = 0; i < argc; ++i)
printf("%s\n", argv[i]);
}