a14o@feddit.org to linuxmemes@lemmy.worldEnglish · 2 months agoSet and forgetfeddit.orgexternal-linkmessage-square9fedilinkarrow-up16arrow-down10
arrow-up16arrow-down1external-linkSet and forgetfeddit.orga14o@feddit.org to linuxmemes@lemmy.worldEnglish · 2 months agomessage-square9fedilink
minus-squareLazycog@sopuli.xyzlinkfedilinkarrow-up0·2 months agoThis is why I follow linux memes, I don’t know if I have ever bumped into CTRL+R but I finally can let go of history
minus-squaretal@lemmy.todaylinkfedilinkEnglisharrow-up1·edit-22 months agoIf you haven’t used them before, there’s also ! and ^. ! invokes the last command starting with the following string. ^ searches for the last command containing the first string, replaces that string with the second, and invokes that. $ ls *.mp4 Episode_One.mp4 Episode_Two.mp4 $ !l ls *.mp4 Episode_One.mp4 Episode_Two.mp4 $ ^mp4^mp3 ls *.mp3 music.mp3 $
minus-squareLazycog@sopuli.xyzlinkfedilinkarrow-up1·2 months agoI used !<index> Together with history by giving an index displayed in the history list, but did not know that you can use it like that! Also didn’t know about ^ Thanks for the tips!
This is why I follow linux memes, I don’t know if I have ever bumped into CTRL+R but I finally can let go of
history
If you haven’t used them before, there’s also
!
and^
.!
invokes the last command starting with the following string.^
searches for the last command containing the first string, replaces that string with the second, and invokes that.I used
!<index>
Together withhistory
by giving an index displayed in the history list, but did not know that you can use it like that! Also didn’t know about^
Thanks for the tips!