a14o@feddit.org to linuxmemes@lemmy.worldEnglish · 2 days agoSet and forgetfeddit.orgimagemessage-square58linkfedilinkarrow-up1508arrow-down15
arrow-up1503arrow-down1imageSet and forgetfeddit.orga14o@feddit.org to linuxmemes@lemmy.worldEnglish · 2 days agomessage-square58linkfedilink
minus-squaretal@lemmy.todaylinkfedilinkEnglisharrow-up18·edit-22 days 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-up5·2 days 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!
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!