how do i fix ^@ appering on cursor [on hold] Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) 2019 Community Moderator Election Results Why I closed the “Why is Kali so hard” questionDual monitor configuration on Intel Ivy Bridgemod-mono-server 4 is not working, while 2 doesWhat is the TTY major number of your Unix?IP Camera with embedded LinuxXfce - adapt settings according to screen resolutionLinux application development and signal handlingHow to set a path variable without root acess?Emscripten fundamentally incompatable with clang on linuxBinary permissions in romfsssh tunnel putty - UI app login not working from browser
Antler Helmet: Can it work?
How to draw this diagram using TikZ package?
What LEGO pieces have "real-world" functionality?
Can inflation occur in a positive-sum game currency system such as the Stack Exchange reputation system?
How can I fade player when goes inside or outside of the area?
IndentationError when pasting code in Python 3 interpreter mode
Disable hyphenation for an entire paragraph
What is the longest distance a 13th-level monk can jump while attacking on the same turn?
How can I make names more distinctive without making them longer?
When -s is used with third person singular. What's its use in this context?
Why is black pepper both grey and black?
Why was the term "discrete" used in discrete logarithm?
Can Pao de Queijo, and similar foods, be kosher for Passover?
What are 'alternative tunings' of a guitar and why would you use them? Doesn't it make it more difficult to play?
What does '1 unit of lemon juice' mean in a grandma's drink recipe?
Are my PIs rude or am I just being too sensitive?
Gastric acid as a weapon
Is there a concise way to say "all of the X, one of each"?
Can a non-EU citizen traveling with me come with me through the EU passport line?
How does cp -a work
What's the purpose of writing one's academic bio in 3rd person?
Output the ŋarâþ crîþ alphabet song without using (m)any letters
How to motivate offshore teams and trust them to deliver?
Models of set theory where not every set can be linearly ordered
how do i fix ^@ appering on cursor [on hold]
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
2019 Community Moderator Election Results
Why I closed the “Why is Kali so hard” questionDual monitor configuration on Intel Ivy Bridgemod-mono-server 4 is not working, while 2 doesWhat is the TTY major number of your Unix?IP Camera with embedded LinuxXfce - adapt settings according to screen resolutionLinux application development and signal handlingHow to set a path variable without root acess?Emscripten fundamentally incompatable with clang on linuxBinary permissions in romfsssh tunnel putty - UI app login not working from browser
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
My old app runs on unix and has unix build screens for application to enter details,currently we moved to linux and now the cursor shows ^@ in it.
This apparently is the null character coming from the c code of the app.
I checked the unix settings using stty -a and found that eol is set to ^@ and i tried to do the same for linux but that is not getting set in linux.
linux command-line c
New contributor
user346752 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
put on hold as too broad by Thomas Dickey, Kiwy, Kusalananda♦ Apr 12 at 14:32
Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. Avoid asking multiple distinct questions at once. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
My old app runs on unix and has unix build screens for application to enter details,currently we moved to linux and now the cursor shows ^@ in it.
This apparently is the null character coming from the c code of the app.
I checked the unix settings using stty -a and found that eol is set to ^@ and i tried to do the same for linux but that is not getting set in linux.
linux command-line c
New contributor
user346752 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
put on hold as too broad by Thomas Dickey, Kiwy, Kusalananda♦ Apr 12 at 14:32
Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. Avoid asking multiple distinct questions at once. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
I don't quite understand the question, so this may be wrong, but did you try runningstty saneorreset? Does that fix your issue? Or are you complaining that the program prints unwanted ^@ characters? If that's the case, try piping it to eithertr -d ''to delete the characters, ortr '' 'n'to change them to newlines.
– TSJNachos117
Apr 12 at 1:17
I tried running stty sane but still the eol is not getting set as eol = ^@. My problem is when my c executable runs it brings up screens to enter input but in the new environment (linux) the same executable runs and it brings up the screen along with the cursor holding ^@ value.
– user346752
Apr 12 at 5:30
Oh, it's changing your cursor. I don't know how I missed that before. What happens if you typeprintf '33[0 0'? (Source)
– TSJNachos117
2 days ago
add a comment |
My old app runs on unix and has unix build screens for application to enter details,currently we moved to linux and now the cursor shows ^@ in it.
This apparently is the null character coming from the c code of the app.
I checked the unix settings using stty -a and found that eol is set to ^@ and i tried to do the same for linux but that is not getting set in linux.
linux command-line c
New contributor
user346752 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
My old app runs on unix and has unix build screens for application to enter details,currently we moved to linux and now the cursor shows ^@ in it.
This apparently is the null character coming from the c code of the app.
I checked the unix settings using stty -a and found that eol is set to ^@ and i tried to do the same for linux but that is not getting set in linux.
linux command-line c
linux command-line c
New contributor
user346752 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
user346752 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited Apr 11 at 17:50
Rui F Ribeiro
42.1k1483142
42.1k1483142
New contributor
user346752 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked Apr 11 at 17:00
user346752user346752
1
1
New contributor
user346752 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
user346752 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
user346752 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
put on hold as too broad by Thomas Dickey, Kiwy, Kusalananda♦ Apr 12 at 14:32
Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. Avoid asking multiple distinct questions at once. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
put on hold as too broad by Thomas Dickey, Kiwy, Kusalananda♦ Apr 12 at 14:32
Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. Avoid asking multiple distinct questions at once. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
I don't quite understand the question, so this may be wrong, but did you try runningstty saneorreset? Does that fix your issue? Or are you complaining that the program prints unwanted ^@ characters? If that's the case, try piping it to eithertr -d ''to delete the characters, ortr '' 'n'to change them to newlines.
– TSJNachos117
Apr 12 at 1:17
I tried running stty sane but still the eol is not getting set as eol = ^@. My problem is when my c executable runs it brings up screens to enter input but in the new environment (linux) the same executable runs and it brings up the screen along with the cursor holding ^@ value.
– user346752
Apr 12 at 5:30
Oh, it's changing your cursor. I don't know how I missed that before. What happens if you typeprintf '33[0 0'? (Source)
– TSJNachos117
2 days ago
add a comment |
I don't quite understand the question, so this may be wrong, but did you try runningstty saneorreset? Does that fix your issue? Or are you complaining that the program prints unwanted ^@ characters? If that's the case, try piping it to eithertr -d ''to delete the characters, ortr '' 'n'to change them to newlines.
– TSJNachos117
Apr 12 at 1:17
I tried running stty sane but still the eol is not getting set as eol = ^@. My problem is when my c executable runs it brings up screens to enter input but in the new environment (linux) the same executable runs and it brings up the screen along with the cursor holding ^@ value.
– user346752
Apr 12 at 5:30
Oh, it's changing your cursor. I don't know how I missed that before. What happens if you typeprintf '33[0 0'? (Source)
– TSJNachos117
2 days ago
I don't quite understand the question, so this may be wrong, but did you try running
stty sane or reset? Does that fix your issue? Or are you complaining that the program prints unwanted ^@ characters? If that's the case, try piping it to either tr -d '' to delete the characters, or tr '' 'n' to change them to newlines.– TSJNachos117
Apr 12 at 1:17
I don't quite understand the question, so this may be wrong, but did you try running
stty sane or reset? Does that fix your issue? Or are you complaining that the program prints unwanted ^@ characters? If that's the case, try piping it to either tr -d '' to delete the characters, or tr '' 'n' to change them to newlines.– TSJNachos117
Apr 12 at 1:17
I tried running stty sane but still the eol is not getting set as eol = ^@. My problem is when my c executable runs it brings up screens to enter input but in the new environment (linux) the same executable runs and it brings up the screen along with the cursor holding ^@ value.
– user346752
Apr 12 at 5:30
I tried running stty sane but still the eol is not getting set as eol = ^@. My problem is when my c executable runs it brings up screens to enter input but in the new environment (linux) the same executable runs and it brings up the screen along with the cursor holding ^@ value.
– user346752
Apr 12 at 5:30
Oh, it's changing your cursor. I don't know how I missed that before. What happens if you type
printf '33[0 0'? (Source)– TSJNachos117
2 days ago
Oh, it's changing your cursor. I don't know how I missed that before. What happens if you type
printf '33[0 0'? (Source)– TSJNachos117
2 days ago
add a comment |
0
active
oldest
votes
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
I don't quite understand the question, so this may be wrong, but did you try running
stty saneorreset? Does that fix your issue? Or are you complaining that the program prints unwanted ^@ characters? If that's the case, try piping it to eithertr -d ''to delete the characters, ortr '' 'n'to change them to newlines.– TSJNachos117
Apr 12 at 1:17
I tried running stty sane but still the eol is not getting set as eol = ^@. My problem is when my c executable runs it brings up screens to enter input but in the new environment (linux) the same executable runs and it brings up the screen along with the cursor holding ^@ value.
– user346752
Apr 12 at 5:30
Oh, it's changing your cursor. I don't know how I missed that before. What happens if you type
printf '33[0 0'? (Source)– TSJNachos117
2 days ago