2 Jul
2015
2 Jul
'15
16:23
В Thu, 2 Jul 2015 11:23:34 -0400 Greg Freemyer <greg.freemyer@gmail.com> пишет:
I'm running bash.
I'm trying to access a file explicitly that has a unicode char in the name:
ls *mynd.dd | od -c 0000000 i 314 201 m y n d . d d \n 0000013
Naively just trying to put those as octal chars isn't working:
ls i\0314\0201mynd.dd ls: cannot access i03140201mynd.dd: No such file or directory
I believe \0314\0201 is actually a single unicode char.
What is the right syntax?
Try ls i$'\314'$'\201'mynd.dd -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org