You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, a call to swift with echo 'abcde' | sift '(.*)c(.*)' --replace='$1\n$2'
results in ab\nde. Instead of a carriage return character, it includes a '\' char followed by a 'n' char.
Expected result: replace \n with a carriage return. ab de
The text was updated successfully, but these errors were encountered:
Currently, a call to swift with
echo 'abcde' | sift '(.*)c(.*)' --replace='$1\n$2'
results in
ab\nde
. Instead of a carriage return character, it includes a '\' char followed by a 'n' char.Expected result: replace
\n
with a carriage return.ab
de
The text was updated successfully, but these errors were encountered: