Okay, this maybe sounds wear.
When I use the terminal after every command I have to search where the input of my terminal is because it goes down with the stream.
How I can have a fixed position for my input?
Okay, this maybe sounds wear.
When I use the terminal after every command I have to search where the input of my terminal is because it goes down with the stream.
How I can have a fixed position for my input?
This is not guaranteed to work, but will with some terminals/emulators in bash:
PS1='\[\033[1;0H\]\s-\v\$ '
This will always put the prompt at the top line. You probably want the cursor at the bottom, though so you can try:
PS1='\[\033[$LINES;0H\]\s-\v\$ '
or more simply:
PS1='\[\033[1000;0H\]\s-\v\$ '