a14o@feddit.org to linuxmemes@lemmy.worldEnglish · 1 day agoSet and forgetfeddit.orgimagemessage-square58linkfedilinkarrow-up1501arrow-down15
arrow-up1496arrow-down1imageSet and forgetfeddit.orga14o@feddit.org to linuxmemes@lemmy.worldEnglish · 1 day agomessage-square58linkfedilink
minus-squaretallinkfedilinkEnglisharrow-up18·edit-21 day 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·1 day 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!