bash does not know the letter 'p' [duplicate]Why did my “d” break when I screwed up a bind?Key for the letter “p” not working everywhere, Ubuntu LinuxWhy my $PATH is not inherited by the invoked bash?How does bash know how it is being invoked?#!/bin/bash: No such file or directoryUnable to source .profile and .nvm/nvm.sh from .bashrcWhy does tmux mess up my Ubuntu login, though it works ok once logged in for new windows?`su` and `sudo bash` give a root prompt that won't execute any commandLooping through lines in file using bash and passing to variable. Resulting variable is not the same value as file, why?Unable to type apostrophe in the terminalWhy can't I add this custom Node PATH to /etc/profile.d scripts?/etc/profile, ~/.bashrc and no other profile files are sourced for users, only for root
90s (or earlier) cross-world fantasy book with a circular river and character-class tattoos
Why aren't (poly-)cotton tents more popular?
Cascading Repair Costs following Blown Head Gasket on a 2004 Subaru Outback
What kind of wire should I use to pigtail an outlet?
Why do some professors with PhDs leave their professorships to teach high school?
What is the line crossing the Pacific Ocean that is shown on maps?
Can a Horncaller control a Druid who is using Wild Shape?
How to reply to small talk/random facts in a non-offensive way?
What sort of mathematical problems are there in AI that people are working on?
Do equal angles necessarily mean a polygon is regular?
No IMPLICIT_CONVERSION warning in this query plan
Plotting with different color for a single curve
Low-gravity Bronze Age fortifications
Why is the G major to Bb major resolution so strong?
Short and long term plans in a closed game in the Sicilian Defense
Do flight schools typically have dress codes or expectations?
Are there any vegetarian astronauts?
What reason would an alien civilization have for building a Dyson Sphere (or Swarm) if cheap Nuclear fusion is available?
Through the Looking-Glass
Using “sparkling” as a diminutive of “spark” in a poem
Go Get the Six Six-Pack
Can the negators "jamais, rien, personne, plus, ni, aucun" be used in a single sentence?
How to perform Login Authentication at the client-side?
Alphabet completion rate
bash does not know the letter 'p' [duplicate]
Why did my “d” break when I screwed up a bind?Key for the letter “p” not working everywhere, Ubuntu LinuxWhy my $PATH is not inherited by the invoked bash?How does bash know how it is being invoked?#!/bin/bash: No such file or directoryUnable to source .profile and .nvm/nvm.sh from .bashrcWhy does tmux mess up my Ubuntu login, though it works ok once logged in for new windows?`su` and `sudo bash` give a root prompt that won't execute any commandLooping through lines in file using bash and passing to variable. Resulting variable is not the same value as file, why?Unable to type apostrophe in the terminalWhy can't I add this custom Node PATH to /etc/profile.d scripts?/etc/profile, ~/.bashrc and no other profile files are sourced for users, only for root
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
This question already has an answer here:
Why did my “d” break when I screwed up a bind?
1 answer
My bash
does not know the letter p
. zsh
does though.
When I type a p
in bash, it simply ignores it, and even pasting in text that contains a p
will result in no p
in the pasted text.
This behavior is the same across terminals (I tried, urxvt
, st
and tty
)
I tried commenting out everything in my ~/.profile
, ~/.bash_profile
and ~/.bashrc
, the problem still persists. Using root though, everything is fine. My /root/.profile
, /root/.bash_profile
and /root/.bashrc
are symlinked to the files in my home directory. So the problem can't originate there, but it's got to be something that is different for root and my user.
I use a custom keyboard layout, but when I switch to standard US keyboard layout, the problem still persists as well.
Just to rule this out as well: I do not use gnome.
Where else can I look?
bash bashrc profile
marked as duplicate by Gilles
StackExchange.ready(function()
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function()
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function()
$hover.showInfoMessage('',
messageElement: $msg.clone().show(),
transient: false,
position: my: 'bottom left', at: 'top center', offsetTop: -7 ,
dismissable: false,
relativeToBody: true
);
,
function()
StackExchange.helpers.removeMessages();
);
);
);
Jun 8 at 9:28
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
show 6 more comments
This question already has an answer here:
Why did my “d” break when I screwed up a bind?
1 answer
My bash
does not know the letter p
. zsh
does though.
When I type a p
in bash, it simply ignores it, and even pasting in text that contains a p
will result in no p
in the pasted text.
This behavior is the same across terminals (I tried, urxvt
, st
and tty
)
I tried commenting out everything in my ~/.profile
, ~/.bash_profile
and ~/.bashrc
, the problem still persists. Using root though, everything is fine. My /root/.profile
, /root/.bash_profile
and /root/.bashrc
are symlinked to the files in my home directory. So the problem can't originate there, but it's got to be something that is different for root and my user.
I use a custom keyboard layout, but when I switch to standard US keyboard layout, the problem still persists as well.
Just to rule this out as well: I do not use gnome.
Where else can I look?
bash bashrc profile
marked as duplicate by Gilles
StackExchange.ready(function()
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function()
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function()
$hover.showInfoMessage('',
messageElement: $msg.clone().show(),
transient: false,
position: my: 'bottom left', at: 'top center', offsetTop: -7 ,
dismissable: false,
relativeToBody: true
);
,
function()
StackExchange.helpers.removeMessages();
);
);
);
Jun 8 at 9:28
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
3
Is there any.inputrc
in effect?
– choroba
Jun 7 at 9:07
1
ha, yes, that's it! I had this left in there:# fix not working delete-key, see https://git.suckless.org/st/file/FAQ.html # line 51 # printf '33[?1h33=' >/dev/tty
I'm using urxvt again anyways, so it doesn't matter
– maddingl
Jun 7 at 9:12
That was easier than I thought :) If you make your comment an answer, I can accept it
– maddingl
Jun 7 at 9:14
Been there, done that :)
– choroba
Jun 7 at 9:16
3
@maddingl could you copy that content into the answer. This would be a very good one for future readers! I understand this was something you might have done yourself but it's good for people to understand cause -> effect.
– Philip Couling
Jun 7 at 9:17
|
show 6 more comments
This question already has an answer here:
Why did my “d” break when I screwed up a bind?
1 answer
My bash
does not know the letter p
. zsh
does though.
When I type a p
in bash, it simply ignores it, and even pasting in text that contains a p
will result in no p
in the pasted text.
This behavior is the same across terminals (I tried, urxvt
, st
and tty
)
I tried commenting out everything in my ~/.profile
, ~/.bash_profile
and ~/.bashrc
, the problem still persists. Using root though, everything is fine. My /root/.profile
, /root/.bash_profile
and /root/.bashrc
are symlinked to the files in my home directory. So the problem can't originate there, but it's got to be something that is different for root and my user.
I use a custom keyboard layout, but when I switch to standard US keyboard layout, the problem still persists as well.
Just to rule this out as well: I do not use gnome.
Where else can I look?
bash bashrc profile
This question already has an answer here:
Why did my “d” break when I screwed up a bind?
1 answer
My bash
does not know the letter p
. zsh
does though.
When I type a p
in bash, it simply ignores it, and even pasting in text that contains a p
will result in no p
in the pasted text.
This behavior is the same across terminals (I tried, urxvt
, st
and tty
)
I tried commenting out everything in my ~/.profile
, ~/.bash_profile
and ~/.bashrc
, the problem still persists. Using root though, everything is fine. My /root/.profile
, /root/.bash_profile
and /root/.bashrc
are symlinked to the files in my home directory. So the problem can't originate there, but it's got to be something that is different for root and my user.
I use a custom keyboard layout, but when I switch to standard US keyboard layout, the problem still persists as well.
Just to rule this out as well: I do not use gnome.
Where else can I look?
This question already has an answer here:
Why did my “d” break when I screwed up a bind?
1 answer
bash bashrc profile
bash bashrc profile
edited Jun 7 at 12:44
Rui F Ribeiro
40.5k16 gold badges89 silver badges150 bronze badges
40.5k16 gold badges89 silver badges150 bronze badges
asked Jun 7 at 8:55
maddinglmaddingl
1429 bronze badges
1429 bronze badges
marked as duplicate by Gilles
StackExchange.ready(function()
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function()
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function()
$hover.showInfoMessage('',
messageElement: $msg.clone().show(),
transient: false,
position: my: 'bottom left', at: 'top center', offsetTop: -7 ,
dismissable: false,
relativeToBody: true
);
,
function()
StackExchange.helpers.removeMessages();
);
);
);
Jun 8 at 9:28
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
marked as duplicate by Gilles
StackExchange.ready(function()
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function()
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function()
$hover.showInfoMessage('',
messageElement: $msg.clone().show(),
transient: false,
position: my: 'bottom left', at: 'top center', offsetTop: -7 ,
dismissable: false,
relativeToBody: true
);
,
function()
StackExchange.helpers.removeMessages();
);
);
);
Jun 8 at 9:28
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
3
Is there any.inputrc
in effect?
– choroba
Jun 7 at 9:07
1
ha, yes, that's it! I had this left in there:# fix not working delete-key, see https://git.suckless.org/st/file/FAQ.html # line 51 # printf '33[?1h33=' >/dev/tty
I'm using urxvt again anyways, so it doesn't matter
– maddingl
Jun 7 at 9:12
That was easier than I thought :) If you make your comment an answer, I can accept it
– maddingl
Jun 7 at 9:14
Been there, done that :)
– choroba
Jun 7 at 9:16
3
@maddingl could you copy that content into the answer. This would be a very good one for future readers! I understand this was something you might have done yourself but it's good for people to understand cause -> effect.
– Philip Couling
Jun 7 at 9:17
|
show 6 more comments
3
Is there any.inputrc
in effect?
– choroba
Jun 7 at 9:07
1
ha, yes, that's it! I had this left in there:# fix not working delete-key, see https://git.suckless.org/st/file/FAQ.html # line 51 # printf '33[?1h33=' >/dev/tty
I'm using urxvt again anyways, so it doesn't matter
– maddingl
Jun 7 at 9:12
That was easier than I thought :) If you make your comment an answer, I can accept it
– maddingl
Jun 7 at 9:14
Been there, done that :)
– choroba
Jun 7 at 9:16
3
@maddingl could you copy that content into the answer. This would be a very good one for future readers! I understand this was something you might have done yourself but it's good for people to understand cause -> effect.
– Philip Couling
Jun 7 at 9:17
3
3
Is there any
.inputrc
in effect?– choroba
Jun 7 at 9:07
Is there any
.inputrc
in effect?– choroba
Jun 7 at 9:07
1
1
ha, yes, that's it! I had this left in there:
# fix not working delete-key, see https://git.suckless.org/st/file/FAQ.html # line 51 # printf '33[?1h33=' >/dev/tty
I'm using urxvt again anyways, so it doesn't matter– maddingl
Jun 7 at 9:12
ha, yes, that's it! I had this left in there:
# fix not working delete-key, see https://git.suckless.org/st/file/FAQ.html # line 51 # printf '33[?1h33=' >/dev/tty
I'm using urxvt again anyways, so it doesn't matter– maddingl
Jun 7 at 9:12
That was easier than I thought :) If you make your comment an answer, I can accept it
– maddingl
Jun 7 at 9:14
That was easier than I thought :) If you make your comment an answer, I can accept it
– maddingl
Jun 7 at 9:14
Been there, done that :)
– choroba
Jun 7 at 9:16
Been there, done that :)
– choroba
Jun 7 at 9:16
3
3
@maddingl could you copy that content into the answer. This would be a very good one for future readers! I understand this was something you might have done yourself but it's good for people to understand cause -> effect.
– Philip Couling
Jun 7 at 9:17
@maddingl could you copy that content into the answer. This would be a very good one for future readers! I understand this was something you might have done yourself but it's good for people to understand cause -> effect.
– Philip Couling
Jun 7 at 9:17
|
show 6 more comments
1 Answer
1
active
oldest
votes
Besides the files you mentioned, there could be .inputrc
in effect that changes the interpretation of the p
key.
Edit: maddingl (the OP) confirms:
That's it. I had left the following in there:
# fix not working delete-key in st, see https://git.suckless.org/st/file/FAQ.html
# line 51
printf '33[?1h33=' >/dev/tty
That line does fix the
delete
-key inst
, but it also causes the described problem. I went back tourxvt
anyways, so for me it does not matter. If the reader is usingst
and wants both workingp
anddelete
, see the above mentioned link for more info.
4
@maddingl I don't think your edit was warrented. First of all: don't write edits using first-person. Edits should fix errors or add small amounts of information. IMHO instead of editing this answer you could have added your own answer instead.
– Giacomo Alzetta
Jun 7 at 10:54
4
@GiacomoAlzetta: Let's not treat new users with conflicting demands. maddingl was asked to do it this this commend on the question above.
– user000001
Jun 7 at 19:07
I think the comment was suggesting that @maddlingl write his own answer, but it was written unclearly.
– Barmar
Jun 7 at 22:08
@Barmar Yes, that's what I meant. If a user edits someone else's answer/question they should do so in an "integrated manner", not like "Hey, different user here. This is what I did ...". At that point they should simply write their own answer and add a reference to the other answer.
– Giacomo Alzetta
Jun 10 at 7:05
@GiacomoAlzetta please don't encourage people to write new posts inappropriately. Answers are for new answers not further clarification of existing answers.
– Philip Couling
Jun 10 at 9:06
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Besides the files you mentioned, there could be .inputrc
in effect that changes the interpretation of the p
key.
Edit: maddingl (the OP) confirms:
That's it. I had left the following in there:
# fix not working delete-key in st, see https://git.suckless.org/st/file/FAQ.html
# line 51
printf '33[?1h33=' >/dev/tty
That line does fix the
delete
-key inst
, but it also causes the described problem. I went back tourxvt
anyways, so for me it does not matter. If the reader is usingst
and wants both workingp
anddelete
, see the above mentioned link for more info.
4
@maddingl I don't think your edit was warrented. First of all: don't write edits using first-person. Edits should fix errors or add small amounts of information. IMHO instead of editing this answer you could have added your own answer instead.
– Giacomo Alzetta
Jun 7 at 10:54
4
@GiacomoAlzetta: Let's not treat new users with conflicting demands. maddingl was asked to do it this this commend on the question above.
– user000001
Jun 7 at 19:07
I think the comment was suggesting that @maddlingl write his own answer, but it was written unclearly.
– Barmar
Jun 7 at 22:08
@Barmar Yes, that's what I meant. If a user edits someone else's answer/question they should do so in an "integrated manner", not like "Hey, different user here. This is what I did ...". At that point they should simply write their own answer and add a reference to the other answer.
– Giacomo Alzetta
Jun 10 at 7:05
@GiacomoAlzetta please don't encourage people to write new posts inappropriately. Answers are for new answers not further clarification of existing answers.
– Philip Couling
Jun 10 at 9:06
add a comment |
Besides the files you mentioned, there could be .inputrc
in effect that changes the interpretation of the p
key.
Edit: maddingl (the OP) confirms:
That's it. I had left the following in there:
# fix not working delete-key in st, see https://git.suckless.org/st/file/FAQ.html
# line 51
printf '33[?1h33=' >/dev/tty
That line does fix the
delete
-key inst
, but it also causes the described problem. I went back tourxvt
anyways, so for me it does not matter. If the reader is usingst
and wants both workingp
anddelete
, see the above mentioned link for more info.
4
@maddingl I don't think your edit was warrented. First of all: don't write edits using first-person. Edits should fix errors or add small amounts of information. IMHO instead of editing this answer you could have added your own answer instead.
– Giacomo Alzetta
Jun 7 at 10:54
4
@GiacomoAlzetta: Let's not treat new users with conflicting demands. maddingl was asked to do it this this commend on the question above.
– user000001
Jun 7 at 19:07
I think the comment was suggesting that @maddlingl write his own answer, but it was written unclearly.
– Barmar
Jun 7 at 22:08
@Barmar Yes, that's what I meant. If a user edits someone else's answer/question they should do so in an "integrated manner", not like "Hey, different user here. This is what I did ...". At that point they should simply write their own answer and add a reference to the other answer.
– Giacomo Alzetta
Jun 10 at 7:05
@GiacomoAlzetta please don't encourage people to write new posts inappropriately. Answers are for new answers not further clarification of existing answers.
– Philip Couling
Jun 10 at 9:06
add a comment |
Besides the files you mentioned, there could be .inputrc
in effect that changes the interpretation of the p
key.
Edit: maddingl (the OP) confirms:
That's it. I had left the following in there:
# fix not working delete-key in st, see https://git.suckless.org/st/file/FAQ.html
# line 51
printf '33[?1h33=' >/dev/tty
That line does fix the
delete
-key inst
, but it also causes the described problem. I went back tourxvt
anyways, so for me it does not matter. If the reader is usingst
and wants both workingp
anddelete
, see the above mentioned link for more info.
Besides the files you mentioned, there could be .inputrc
in effect that changes the interpretation of the p
key.
Edit: maddingl (the OP) confirms:
That's it. I had left the following in there:
# fix not working delete-key in st, see https://git.suckless.org/st/file/FAQ.html
# line 51
printf '33[?1h33=' >/dev/tty
That line does fix the
delete
-key inst
, but it also causes the described problem. I went back tourxvt
anyways, so for me it does not matter. If the reader is usingst
and wants both workingp
anddelete
, see the above mentioned link for more info.
edited Jun 8 at 9:17
ruakh
1,0121 gold badge9 silver badges15 bronze badges
1,0121 gold badge9 silver badges15 bronze badges
answered Jun 7 at 9:15
chorobachoroba
28.1k4 gold badges55 silver badges79 bronze badges
28.1k4 gold badges55 silver badges79 bronze badges
4
@maddingl I don't think your edit was warrented. First of all: don't write edits using first-person. Edits should fix errors or add small amounts of information. IMHO instead of editing this answer you could have added your own answer instead.
– Giacomo Alzetta
Jun 7 at 10:54
4
@GiacomoAlzetta: Let's not treat new users with conflicting demands. maddingl was asked to do it this this commend on the question above.
– user000001
Jun 7 at 19:07
I think the comment was suggesting that @maddlingl write his own answer, but it was written unclearly.
– Barmar
Jun 7 at 22:08
@Barmar Yes, that's what I meant. If a user edits someone else's answer/question they should do so in an "integrated manner", not like "Hey, different user here. This is what I did ...". At that point they should simply write their own answer and add a reference to the other answer.
– Giacomo Alzetta
Jun 10 at 7:05
@GiacomoAlzetta please don't encourage people to write new posts inappropriately. Answers are for new answers not further clarification of existing answers.
– Philip Couling
Jun 10 at 9:06
add a comment |
4
@maddingl I don't think your edit was warrented. First of all: don't write edits using first-person. Edits should fix errors or add small amounts of information. IMHO instead of editing this answer you could have added your own answer instead.
– Giacomo Alzetta
Jun 7 at 10:54
4
@GiacomoAlzetta: Let's not treat new users with conflicting demands. maddingl was asked to do it this this commend on the question above.
– user000001
Jun 7 at 19:07
I think the comment was suggesting that @maddlingl write his own answer, but it was written unclearly.
– Barmar
Jun 7 at 22:08
@Barmar Yes, that's what I meant. If a user edits someone else's answer/question they should do so in an "integrated manner", not like "Hey, different user here. This is what I did ...". At that point they should simply write their own answer and add a reference to the other answer.
– Giacomo Alzetta
Jun 10 at 7:05
@GiacomoAlzetta please don't encourage people to write new posts inappropriately. Answers are for new answers not further clarification of existing answers.
– Philip Couling
Jun 10 at 9:06
4
4
@maddingl I don't think your edit was warrented. First of all: don't write edits using first-person. Edits should fix errors or add small amounts of information. IMHO instead of editing this answer you could have added your own answer instead.
– Giacomo Alzetta
Jun 7 at 10:54
@maddingl I don't think your edit was warrented. First of all: don't write edits using first-person. Edits should fix errors or add small amounts of information. IMHO instead of editing this answer you could have added your own answer instead.
– Giacomo Alzetta
Jun 7 at 10:54
4
4
@GiacomoAlzetta: Let's not treat new users with conflicting demands. maddingl was asked to do it this this commend on the question above.
– user000001
Jun 7 at 19:07
@GiacomoAlzetta: Let's not treat new users with conflicting demands. maddingl was asked to do it this this commend on the question above.
– user000001
Jun 7 at 19:07
I think the comment was suggesting that @maddlingl write his own answer, but it was written unclearly.
– Barmar
Jun 7 at 22:08
I think the comment was suggesting that @maddlingl write his own answer, but it was written unclearly.
– Barmar
Jun 7 at 22:08
@Barmar Yes, that's what I meant. If a user edits someone else's answer/question they should do so in an "integrated manner", not like "Hey, different user here. This is what I did ...". At that point they should simply write their own answer and add a reference to the other answer.
– Giacomo Alzetta
Jun 10 at 7:05
@Barmar Yes, that's what I meant. If a user edits someone else's answer/question they should do so in an "integrated manner", not like "Hey, different user here. This is what I did ...". At that point they should simply write their own answer and add a reference to the other answer.
– Giacomo Alzetta
Jun 10 at 7:05
@GiacomoAlzetta please don't encourage people to write new posts inappropriately. Answers are for new answers not further clarification of existing answers.
– Philip Couling
Jun 10 at 9:06
@GiacomoAlzetta please don't encourage people to write new posts inappropriately. Answers are for new answers not further clarification of existing answers.
– Philip Couling
Jun 10 at 9:06
add a comment |
3
Is there any
.inputrc
in effect?– choroba
Jun 7 at 9:07
1
ha, yes, that's it! I had this left in there:
# fix not working delete-key, see https://git.suckless.org/st/file/FAQ.html # line 51 # printf '33[?1h33=' >/dev/tty
I'm using urxvt again anyways, so it doesn't matter– maddingl
Jun 7 at 9:12
That was easier than I thought :) If you make your comment an answer, I can accept it
– maddingl
Jun 7 at 9:14
Been there, done that :)
– choroba
Jun 7 at 9:16
3
@maddingl could you copy that content into the answer. This would be a very good one for future readers! I understand this was something you might have done yourself but it's good for people to understand cause -> effect.
– Philip Couling
Jun 7 at 9:17