arth1
arth1
Well, you tell it to delete anything that's a backslash or a backslash, which might warrant a different variation of escape warning, because it's not inconceivable that you meant to...
@McDutchie : The incorrect ''' looks like a regression after 0.4.5 was released. Previous to rev 798, it reports: ```^-- SC1003: Are you trying to escape that single quote? echo...
Or, one could use a private class: ```echo 'test\path' | tr '[=\\=]' '/'``` ... except that here, shellcheck seems to give wrong advice: ``` ^-- SC2021: Don't use [] around...
How would it know what is a file name and what is a legal option? Consider this: ``` m=file2 n=file2 o=-8 gzip "$o" "$m" gzip "$m" "$n" ``` How would...