If I press Ctrl+ B, which should give me ASCII 2 code, but Ctrl+ Cwill be interpreted as Break.
So, I suppose I need to redirect the file. How to get these characters to a file?
Ctrl- Vleaves the next key. How can you get Ctrl- Cout: Ctrl- V Ctrl-C
echo $'\002\003' > ./myfile
perl -e 'print "\xFF"'
where FFis the hexadecimal code of the ACSII code you want to print. Therefore, for ACSII 2 code, this will be \ x02.
FF
Source: https://habr.com/ru/post/1696441/More articles:Tree-based (HTML based) web platform? - javascriptМогу ли я генерировать маршруты ASP.NET MVC из Sitemap? - urlImage of a loop button in C # - c #UltraWebGrid: how to use a drop-down list in a column - c #In any case, disable client-side validation for the dojo date text field? - javascriptIs this YAML? - validationПроблемы с дизайном .Net UserControl - c#Search for a specific FireFox extension / program for publishing a form - javascriptinsert / replace XML tag in XmlDocument - javaHow to implement sdbm hash function in C #? - c #All Articles