Це відео не доступне.
Перепрошуємо.

Saving Time At The Command Line

Поділитися
Вставка
  • Опубліковано 13 сер 2024
  • Today I am going to share a few basic command line tips for increasing your speed in the terminal.
    REFERENCED:
    ► history
    ► !command
    ► sudo !!
    ► CTRL+R (for searching)
    ► command one; command two
    ► command one && command two
    ► less /path/to/filename
    ► cat filename | grep search_string
    ► grep search_string filename
    WANT TO SUPPORT THE CHANNEL?
    💰 Patreon: / distrotube
    💳 Paypal: www.paypal.com/cgi-bin/webscr...
    🛍️ Amazon: amzn.to/2RotFFi
    👕 Teespring: teespring.com/stores/distrotube
    SOCIAL PLATFORMS:
    🗨️ Mastodon: mastodon.technology/@distrotube
    💬 IRC: irc://freenode #distrotube
    👫 Reddit: / distrotube
    DT ON THE WEB:
    🕸️ Website: distrotube.com/
    🌐 Gopherhole: gopher://distro.tube
    📁 GitLab: gitlab.com/dwt1
    Your support is very much appreciated. Thanks, guys!

КОМЕНТАРІ • 245

  • @ViniciusProvenzano
    @ViniciusProvenzano 5 років тому +70

    The difference between “;” and “&&” to string commands is that “&&” will run the second command only if no error code was seen on the first one. If you use “;” any error would be ignored. Imagine your example with apt. If you were not connected to the internet and used “apt update; apt upgrade” both would run and error out. If you used “apt update && apt upgrade” the first command would run, encounter the error and stop.

    • @DistroTube
      @DistroTube  5 років тому +21

      Great point! Thanks, viniciusxp.

    • @matthiascoppens2062
      @matthiascoppens2062 5 років тому +14

      Also, "||" can be used to execute a second command if the first one fails. This is used often in Gentoo ebuilds to kill an install if an important process fails.

    • @DDBAA24
      @DDBAA24 5 років тому

      @@matthiascoppens2062 instead of && if you use || it will complete the secondary command regardless is what your saying ? Just want o make sure I am clear.

    • @matthiascoppens2062
      @matthiascoppens2062 5 років тому

      @@DDBAA24 That's not what I meant. || runs the second command only if the first one fails. This way you can easily catch errors in shell script.

    • @philpeko1796
      @philpeko1796 4 роки тому

      @@@DistroTube important error and should be pointed out clearly. DistroTube, thanks for your video, and good opportunity to make a replacement video ;-) !!!

  • @esra_erimez
    @esra_erimez 5 років тому +352

    ; and && are very different. ; will run the next command no matter what. && will run the next command only if the first comment returned a success status result (0).

    • @crwmike0
      @crwmike0 5 років тому +83

      And || runs the second command only if the first command fails (exit code other than 0).

    • @Gornius
      @Gornius 5 років тому +15

      TIL. This opens up new possibilities.

    • @meliodas.1108
      @meliodas.1108 5 років тому +4

      Thanks

    • @IslandC0der
      @IslandC0der 5 років тому

      What about ; and &? What's the difference?

    • @IslandC0der
      @IslandC0der 5 років тому

      @@benchislett8 Thanks!

  • @dfnkt
    @dfnkt 4 роки тому +6

    I dig the "!!" thing but if I needed to repeat a long command prefixed with sudo I would hit the up arrow to restore the last command entered, hit CTRL + A to put the cursor at the beginning and type sudo . Your solution is a keystroke less (7 keys versus 8), you win the keyboard golf this time :) I use the aforementioned enough that I have insert mode bindings in vim for CTRL + A and CTRL+E to go to beginning / end of line

  • @Gornius
    @Gornius 5 років тому +36

    While in "less" you can type in "/" followed by regular expression to search. Press "n" to show next result, "shift+n" to go back to previous result.

    • @polgzz
      @polgzz 4 роки тому +5

      Basically less is "vim like"!

    • @Rudolfucius
      @Rudolfucius 2 роки тому +2

      @@polgzz no, its "more" with better features
      but its named "less" because its a funny joke
      "less does more"

    • @shallex5744
      @shallex5744 Рік тому

      @@Rudolfucius Basically more is vim-like

  • @DevDungeon
    @DevDungeon 5 років тому +28

    You can also use !? to run the last command that contains the string. For example, if you recently ran `sudo systemctl restart nginx` you could run `!?ngin` or `!?restart`.

  • @migue7490
    @migue7490 5 років тому +115

    You should have press ctrl+l to clean the terminal instead of type "clear" and ctrl + u to delete the line XD. Great video! good tips, I use some of those and not others, maybe I must change some habits.

    • @hacerdemirel9833
      @hacerdemirel9833 5 років тому +6

      thanks (ctrl+l)

    • @_sudipidus_
      @_sudipidus_ 5 років тому +1

      scrolled down to type this comment (saw you already did it)

    • @brainplot
      @brainplot 4 роки тому +13

      To be more precise, CTRL+U won't exactly "delete the line". It will delete all the characters found from the current position of the cursor up to the beginning of the line. So if your cursor is sitting in the middle of a command, only the left-hand side will be deleted. CTRL+K works the exact same way but in the opposite direction: it cuts the right-hand side of the line. Of course if you're cursor is at the end of the line and you do CTRL+U, it'll give the impression that it deleted the whole line! :)

    • @The9TKitsune
      @The9TKitsune 4 роки тому +5

      ctrl+l is especially wonderful for stuff like using CI utilities like a REPL where you can't use clear without exiting and reentering. ctrl+l lets you clean your screen regardless of what's currently occupying your shell.

    • @williamseipp9691
      @williamseipp9691 4 роки тому +1

      didn't know about Ctrl U. thanks

  • @hammerheadcorvette4
    @hammerheadcorvette4 4 роки тому +23

    Luke Smith : "Don't cat into grep"

    • @polgzz
      @polgzz 4 роки тому +4

      Dude, he says that himself seconds after!

  • @paulgurnig3778
    @paulgurnig3778 5 років тому +9

    Appreciate the tldr suggestion. Was familiar with most everything else, but learning about tldr made my day. Great information on your channel! Installed on fedora quite easily.

  • @davidgomez79
    @davidgomez79 5 років тому +35

    echo !*
    will echo out all the arguments from last command, very useful at times when you need to reuse your last arguments for something.

    • @tsundoku5733
      @tsundoku5733 5 років тому +9

      If you only need the last argument (and not all of them), you can just use !$.

  • @RedFenceAnime
    @RedFenceAnime 5 років тому +2

    I've been piping into grep & less all this time.
    Big thanks for the !command and Ctrl-r , also installed tldr this will save me time searching for examples online.
    So much things to learn, been using Linux full time for almost 6 months and I love it.

  • @michaelvivirito
    @michaelvivirito 5 років тому +5

    The command line is the whole reason I chose to learn and use Linux 10 years ago. So cool

  • @jasonmiani8108
    @jasonmiani8108 5 років тому +2

    You sir, just changed my life. Thanks for this. Please do more!

  • @ZzBiazZ
    @ZzBiazZ 5 років тому +16

    Thank you, the tldr command is so useful to me :p

  • @aristotelispapageorgiou4627
    @aristotelispapageorgiou4627 5 років тому +1

    Every time I watch DT videos I learn something new. Thanks!

  • @POI5ONX
    @POI5ONX 5 років тому +2

    I'm really liking the new graphic equalizer as part you web cam window, makes for a much cleaner UI for your content.

  • @med5032
    @med5032 4 роки тому +5

    THIS. CHANGES. EVERYTHING.

  • @MonkeyMagick
    @MonkeyMagick 5 років тому +2

    This is a great refresher for me. I got into Linux around '99-2000 but have had a long time away; gotta blow away the cobwebs.😁

  • @brcts
    @brcts 5 років тому +2

    really like the addition of cli-visualizer to your set, right on dt!

  • @finndriver1063
    @finndriver1063 5 років тому +14

    Try out fish (friendly, interactive shell), I've found it to have the fastest workflow (abbreviations, syntax-highlighting and indentation, cd-history, etc).
    A valuable tip for grepping is to use '-C N' to also print the N lines around each match.

    • @praetorxyn
      @praetorxyn 4 роки тому

      I am afraid to try it because it's not POSIX compliant. I use & & stringing a lot and I don't think that works in fish.
      I have considered trying it simply because it supports the XDG Base Directory Specification though.

    • @praetorxyn
      @praetorxyn 4 роки тому

      I've heard it's slow, and was afraid to try it because it's not POSIX compliant. Maybe I'll try it on my work VM as it does support XDG spec.

    • @finndriver1063
      @finndriver1063 4 роки тому

      @@praetorxyn I mean, I wouldn't use it for scripts requiring blazing speeds, but then I wouldn't use bash for that either. I just mean it's fast to use interactively

  • @BeneSim
    @BeneSim 5 років тому +2

    One command I recently fell in love with is `fc`. It opens your last run command in an editor and lets you edit it and reruns it again after leaving the editor. This way you can use vim's movement keys to quickly edit very long commands.
    Another great alternative to `cat` is `bat` which is syntax aware and also uses a pager by default. It's also a very nice fallback command for vifm's preview.

    • @agenttank
      @agenttank 5 років тому

      cool! zsh does that without fc i think

  • @andrewpalm2103
    @andrewpalm2103 5 років тому +2

    Informative as usual, Derek. Thanks!

  • @tsogid
    @tsogid 2 роки тому

    I'm on linux for over a decade now and some of the things I've never came across! Linux doesn't cease to impress me!

  • @OnlyJudas
    @OnlyJudas 4 роки тому

    When it comes to grep I like to use "grep -A3 -B3" so it will return the line containing the phrase and also three lines before and after that phrase, so I have a context in which given phrase is placed in the file

    • @davidh.4944
      @davidh.4944 Рік тому

      Use "-C 3", then. It gives you the lines in both directions. (A=after, B=before, C= context, i.e. both before and after.)

  • @a.accioly
    @a.accioly 5 років тому

    I just want to give credit where credit's due. I have been following you for quite a while. Your channel is a great source of information, very welcoming to new and experienced linux users. Thanks for all of the content and keep up the great work!

  • @YassirAghraba
    @YassirAghraba 5 років тому +6

    Also you forgot to mention that '!-n' re-executes the last nth command, so '!-1' it's equivalent to '!!'.
    One another tip, let"s say I opened a file with 'cat', then I figured out that I have to make some changes, instead of running 'vim the file' you can simply run 'vim !!:$' and it's gonna take the argument of cat and places it after 'vi'. Wish it helps.

    • @mathews_josep
      @mathews_josep 5 років тому +2

      I use !$ to get the last argument of the previous command

    • @YassirAghraba
      @YassirAghraba 5 років тому +2

      @@mathews_josep It's useful also.

  • @djwiggum911
    @djwiggum911 5 років тому +2

    If you want to use your aliases defined in .bashrc right away, call source ~/.bashrc to use the definitions without restarting the terminal session.

  • @farjamful
    @farjamful 2 роки тому

    wow tldr !!! thanks dt. I wish i could like your videos 1000 times.

  • @123liveo
    @123liveo 3 роки тому +1

    You have some amazing advice. Cheers!

  • @ianpan0102
    @ianpan0102 5 років тому

    I noticed that the audio and video match up better in this vid compared to previous ones. Great job DT!

  • @Delis007
    @Delis007 5 років тому +2

    Useful tips that save tons of time, thanks!

  • @bugracansefercik917
    @bugracansefercik917 4 роки тому +3

    I was expecting a bit more tricky commands. I knew all of the ones you used.

  • @aaronlippincott7385
    @aaronlippincott7385 5 років тому +1

    love this, good content, straight to the point, and free from bloat. ty DT

  • @FritsvanderHolst
    @FritsvanderHolst 5 років тому +3

    Good one. I tell exactly the same thing when I run my Linux Fundamentals classroom training. Didn't know tldr btw. Mmmmm...

  • @rosemarieosborn8625
    @rosemarieosborn8625 5 років тому

    thank you so much, I love the terminal because of videos like yours, I learn new things everyday because of your terminal tutorials

  • @johnmal5975
    @johnmal5975 5 років тому +3

    I really like the !! I could have used that about a thousand times and them some!

    • @DDBAA24
      @DDBAA24 5 років тому +1

      Also you can add text before and after ' !!' like this:
      apt update
      sudo !! && apt list --upgradable ( which would give you)
      sudo apt update && apt list --upgradable
      *Or if your on Archlinux same thing if you needed to be root and decided you wanted to add more on to the command
      pacman -Syu
      sudo !! && pacman -S net-tools (which would equate to)
      sudo pacman -Syu && sudo pacman -S net-tools ( Anything after the !! will just append onto the end of the command) 🐱‍💻👍

    • @markkeilys
      @markkeilys 5 років тому +1

      remember to alias fuck to sudo !!

  • @ThomasMatason
    @ThomasMatason 5 років тому +1

    Great info supported by smart comments! (I was going to sub/support based on production quality alone)

  • @mdalwakilpersonal7437
    @mdalwakilpersonal7437 2 роки тому

    Really short and useful video, thanks alot

  • @phxnt0m348
    @phxnt0m348 5 років тому +2

    ctrl+L to clear - undeniably my most used command
    sudo !! - use this all the time
    cd - just running that from wherever you are takes you back to your home folder. Very nice
    cd / - takes you to the root. Always handy
    grep - well, say no more. A lovely command when you realise it's power
    Useful to know that the bottom 3 work in Windows too. Replace 'grep' with 'findstr'. Sadly there's no shortcut in Windows CMD to clear the shell you have to type 'cls'.
    Great video.

  • @DaveSomething
    @DaveSomething 4 роки тому +1

    I still use DOS windows when working on Windows machines. On Linux, I do updates and installs with command line/ssh. Thanks for the video!

  • @saeedxgholami
    @saeedxgholami 5 років тому +1

    Hi Derek
    I want to suggest you create compare applications type videos. In this type of videos you can compare applications from various specification like their performance, their popularity, their usability and etc.
    My second thought is you can create some videos about how to create your own cool/awesome/fancy desktop (which we saw their pictures on unixporn) from ground up, from xorg to config the DE/WM to look awesome and of course usable.
    Thanks.

  • @TonyFlexPromo
    @TonyFlexPromo 5 років тому +2

    tldr is kinda noobish way to learn command line, but a find it a great companion to traditional man. Most of times i search not what exactly that key do, but how to combine keys to get what you want (tar is a great example here).
    Thanks for a great advices!

  • @Tala2n
    @Tala2n 3 роки тому

    GUI have some advantages like reducing the need to know names by heart and displaying the options available.

  • @mentalmarvin
    @mentalmarvin 5 років тому +9

    Cmatrix is running on turbo today?

  • @RayVermey
    @RayVermey 5 років тому +5

    control-r gives 1st history find, ctrl-r again finds the next one and so on

    • @GreyDeathVaccine
      @GreyDeathVaccine 3 роки тому

      There is better way. Just install fzf from github and enable shell integration by sourcing specific file. It will give you fuzzy finder and you press CTRL+R just one time.
      I highly recommend fzf. It can be combined with many commands. Fantastic tool.

  • @tsundoku5733
    @tsundoku5733 5 років тому +1

    There is more.
    For example, if after running
    cat /path/to/long/filename
    you want to find a string inside that file, you can run
    grep string !$
    !$ stands for the last parameter of the last command, so, in the above example, you don't need to retype the long file path.

  • @shftn2gear97
    @shftn2gear97 2 роки тому

    So thankful my introduction to Linux forced me to use the command line.

  • @josephbrandenburg4373
    @josephbrandenburg4373 2 роки тому

    4:00 I usually press UP and then HOME and then type sudo. Just as fast IMO, but not every keyboard has a HOME key (for example, Raspberry Pi 400, any tenkeyless or mini keyboard)

  • @sleepyeyesvince
    @sleepyeyesvince 5 років тому +1

    Instantly installed tldr. Thanks DT!

  • @ulfgj
    @ulfgj 5 років тому +1

    tldr==awesome. thanks!
    also, with cd - (cd dash) you can toggle between directories. love it.

  • @AnzanHoshinRoshi
    @AnzanHoshinRoshi 5 років тому +1

    ! Thank you, Derek.

  • @manone2078
    @manone2078 5 років тому +1

    Another shortcut is Ctrl + A to go to the beginning of the command. Useful for long commands & forgetting sudo :)

    • @SimGunther
      @SimGunther 5 років тому +2

      Ctrl + k cuts everything at and after the cursor and Ctrl + u cuts everything before the cursor. Ctrl + y lets you paste what I previously mentioned.
      And yes, you can do Ctrl + e to get back to the end of the line :)

    • @ViniciusProvenzano
      @ViniciusProvenzano 5 років тому

      SimGunther Emacsy shortcuts, kind of...

    • @martinvandenbroek2532
      @martinvandenbroek2532 5 років тому +1

      M-f ( go forward one word ), M-b ( go back one word ) , M-d ( delete next word ) and M-backspace ( delete previous word ) ;P

  • @anujpancholi8293
    @anujpancholi8293 5 років тому +2

    Zsh + ohmyzsh = beautiful terminal. Looks like you're using the powerlevel9k theme (which I also use)

  • @nathanpoulos1733
    @nathanpoulos1733 3 роки тому

    tldr is a game changer for me. I didnt know about it until this video

  • @ianjamiesonmusic
    @ianjamiesonmusic 3 роки тому

    When you were doing vim and cat on the same file you can use:
    !$
    to get the argument from the previous command. eg.
    cat my/file.txt
    less !$
    => less my/file.txt

  • @flipup556
    @flipup556 3 роки тому +1

    wow never heard of tldr before thanks!

  • @BartekJuszczak
    @BartekJuszczak 3 роки тому

    To do my 'sudo !!'
    I type (Arrow Up) (Home Key) sudo
    Which is actually the same exact number of key presses.

  • @faisalahmed9434
    @faisalahmed9434 4 роки тому +1

    Dude you deserve more subs!!

  • @elyknavillus777
    @elyknavillus777 2 роки тому

    The double !! Is cool I've been hitting the up arrow to bring up the last command then scroll to the front and type sudo, !! Is way faster and as a new to Linux user I make that mistake alot.

  • @craigw4644
    @craigw4644 4 роки тому

    Informative, love Linux, always learning new things no matter how long a person utilizes the operating system.

  • @hewfrebie2597
    @hewfrebie2597 5 років тому +7

    btw I use neovim, and I know how to use neovim but not completey, but I use it :)

    • @migue7490
      @migue7490 5 років тому +3

      Neovim is great. I've moved from vim to nvim and a couple of issues were solved.

    • @agenttank
      @agenttank 5 років тому +4

      nobody knows vim or neovim completely ^^

  • @timelesstrance3720
    @timelesstrance3720 4 роки тому +1

    Ctrl l is a good binding for regular bash

  • @brainplot
    @brainplot 4 роки тому

    I don't know if something's changed lately (since I've had my Arch install for over 2 years now), but Arch Linux does not use Zsh by default. It only uses Zsh in the live ISO. Once you reboot into your newly-installed system, it uses Bash by default :)

  • @jasongomez5344
    @jasongomez5344 5 років тому +1

    Ctrl-r is supposed to be used repeatedly, if you want to search further back into the history.

  • @oleglubimoff5515
    @oleglubimoff5515 5 років тому

    There is another usefull tip that everyone forgets about. ctrl+x and then ctrl+e brings up an editor to run and edit long multiline command. Just save the file and close the editor and the command will run.

  • @rodneyjameslandry
    @rodneyjameslandry 5 років тому +1

    Thanks, learned something new.

  • @DaveSomething
    @DaveSomething 4 роки тому +1

    thanks for the tldr one... nice.

  • @PraveenRai
    @PraveenRai 5 років тому +4

    Hi could you please create one video to have your terminal style terminal.. Is it zsh. Please help me to know ho you did it

  • @keiichiiownsu12
    @keiichiiownsu12 5 років тому +1

    Do you list your zsh dotfiles on github? Curious what theme you are using (upgraded agnoster?).
    Also, have any good suggestions for OMZ alternatives?

    • @DistroTube
      @DistroTube  5 років тому

      The zsh theme is powerlevel10k.

  • @SkyFly19853
    @SkyFly19853 5 років тому +1

    Useful tips...
    💯💯💯

  • @RonnieNissan
    @RonnieNissan 5 років тому +2

    Sed and awk are my favorite terminal tools, and I really love piping "|" stuff.

  • @voiceoftreason1760
    @voiceoftreason1760 4 роки тому +1

    how do you get that kind of colored ls output? for me all the permissions are the same color, also on zsh.

    • @DistroTube
      @DistroTube  4 роки тому +1

      My ls is not really ls. It is exa. ;)

  • @ramit7
    @ramit7 2 роки тому

    What is that program running below your video rectangle that seems to respond to your sound intonations?

  • @tintat2
    @tintat2 2 роки тому

    what is the vocabulary size of the complete command line language---It seems to me it would be easier to learn greek !

  • @RichardThomas341
    @RichardThomas341 4 роки тому +1

    Good stuff. I really like your prompt, with the colors. Would you share how this is done, please? Thank you!

    • @RichardThomas341
      @RichardThomas341 4 роки тому +1

      After some research it looks as if this from the zsh theme installed by Oh My Zsh, correct?

    • @DistroTube
      @DistroTube  4 роки тому +1

      Powerlevel10k theme for zsh.

    • @RichardThomas341
      @RichardThomas341 4 роки тому

      @@DistroTube Great, thanks!

  • @dominicmason3999
    @dominicmason3999 5 років тому +1

    Whatever happen to " Load "*",8,1" lol. Literally the cli is where i first learned computers way back on the C64. Same with dos, same with linux. Good vid, thanks.

    • @brianmiller1077
      @brianmiller1077 5 років тому

      I knew to run it, i had no idea what it meant

  • @user-ic7cj8lq9z
    @user-ic7cj8lq9z 4 роки тому

    I can think of a few tips off the top of my head:
    - Swap Esc and CapsLock key with this command in your login script: setxkbmap -option caps:swapescape.
    - Copy paste to and from nvim: set clipboard=unnamedplus
    - Use sudoedit to edit files in nvim that need elevated privileges. This will still load your vim config. You need VISUAL=nvim in your environment.
    - Use tmux for easy copy paste to and from command line and many other things.
    - Use a terminal file explorer. E.g. nnn.
    - Use alias expansion. I have a script for zsh alias expansion on my github as well as my configuration files for nvim, tmux etc.
    github.com/sowiz/zsh-config/blob/master/.zsh-scripts/expand-alias.zsh

  • @perseusarkouda
    @perseusarkouda 5 років тому

    I knew much of linux commands but never really thought how bash scripts really worked. Once I started making my own bash scripts my life on linux improved by 1000%

    • @perseusarkouda
      @perseusarkouda 5 років тому

      @X GNU Bio Everyone was telling me it is a low level language and I should move to python or something. Ofcourse, it's limiting and possibly harder but that's what I'm used to for many many years. So I said heck, that's my hobby anyway, I'll keep trying in bash and actually paid off.

    • @perseusarkouda
      @perseusarkouda 5 років тому

      @X GNU Bio Thanks for sharing. I've made some scripts for my game servers and they do pretty advanced things. Although I wish I didn't made them so personalized to only fit my needs. I have to rewrite them for universal use.

  • @pichass9337
    @pichass9337 5 років тому +1

    Nice and informational

  • @shawnsmith9591
    @shawnsmith9591 5 років тому +1

    Hey, I've been watching your videos for some time now. And I was wondering how do you get the history numbering on the right side of the terminal? I also have powerline runing but have not found a way to have the history numbering? Thanks

    • @DistroTube
      @DistroTube  5 років тому +2

      A zsh theme called powerlevel10k.

  • @ZaneyOG
    @ZaneyOG 5 років тому +1

    Mastadon Gang represent!

  • @nerrufam7105
    @nerrufam7105 5 років тому

    if you want to print a file simply run: # grep . file.txtthe cat command is to concatenate multiple files into one.

  • @ShiloWardComedy
    @ShiloWardComedy 5 років тому

    !Nice 0:59 I can see how this saves time retyping long script like commands (for those of us who cant #breatheShells 24/7 #IRL)

  • @yangyanwu84
    @yangyanwu84 4 роки тому +1

    What terminal are you using? it looks cool.

  • @iLiokardo
    @iLiokardo 5 років тому +1

    tldr command looks good

  • @bobmccoy9926
    @bobmccoy9926 11 місяців тому

    Why do you not use ctrl-l (lowercase L) to clear your screen instead of typing clear, especially in a video about speeding up your workflow? I'm guessing that you are using ctrl-l for something else, but typing clear is definitely more complicated.

  • @mariozamora1369
    @mariozamora1369 4 роки тому

    It would be great if you could share your \.bashrc configuration. Your terminal looks awesome.

    • @DistroTube
      @DistroTube  4 роки тому +1

      My gitlab is in the show description. Was using zsh in this video.

    • @mariozamora1369
      @mariozamora1369 4 роки тому

      @@DistroTube Thank you. Maybe is time to me start to learn how to use zsh.

  • @titus7770
    @titus7770 5 років тому

    Could you make an audio setup tutorial on manjaro? I've got a xlr microphone hooked up to my mixer board that then hoes in via aux to my pc however I can't get it to work! I do have my wireless headset and the mic for that one works!

  • @machman23
    @machman23 5 років тому

    Did not know about tldr , thank-you

  • @praetorxyn
    @praetorxyn 4 роки тому

    Are these (like sudo!!) specific to bash or derivatives like zsh, or do they work regardless of shell?

  • @vfmadd231pd
    @vfmadd231pd 4 роки тому

    Probably a dumb question but what shell is he using? Looks very nice

  • @Mega_Casual
    @Mega_Casual 5 років тому +1

    arrow up key also repeats last command and previous commands each time you press it. So you could have typed sudo "up arrow" You could also use the command "more" rather than cat or end. That way a long file will list out with page breaks. But only use these for text files. Not good to do it on binary files.

    • @migue7490
      @migue7490 5 років тому +1

      12:10

    • @walek92SFC
      @walek92SFC 5 років тому +1

      ​@@Jack-hd3ov Yes, if you press the up arrow key, but you're supposed to type it. You can type control characters in the terminal with a Ctrl-v followed by [key].
      Which in bash looks like sudo ^[[A and gives a command not found, at least in version i'm on.

    • @Mega_Casual
      @Mega_Casual 5 років тому

      @@Jack-hd3ov Oops....yeah.....I meant to fix that. LOL

    • @mashygreen6974
      @mashygreen6974 5 років тому

      I normally just press the up arrow to get the whole command, then ctrl-a to move to the start of the line, and then _ which is an alias for sudo (learnt that alias from ohmyzsh). It's in muscle memory now so will be hard to remember to do _ !! instead.

  • @chongchonghe3748
    @chongchonghe3748 4 роки тому +1

    Do Ctrl + l do the work that "clear" does on Ubuntu? It does on my Mac.

    • @DistroTube
      @DistroTube  4 роки тому

      It works as long as ctrl-l doesn't conflict with other keybindings you may be using for your terminal, window manager, etc. Which is the case for me if I'm using the bash shell and using vi mode in that shell.
      Clear always works. ;)

  • @polgzz
    @polgzz 4 роки тому

    I don't know exactly which key it is on an us_en keyboard, but:
    You forgot to say that if you press de up arrow key to get the last command then you can push the (I guess) ¿home key? to go to the beginning of the line? (The one that gets you in any regular editor) (sorry, my keyboard is non english.
    If you just forgot sudo, sudo!! is fine, but maybe you cat something, or ls it and now want to finally edit or cd into that, no need to go character by character back like you did so many times on that video 🤣🤣
    --
    Also, after editing the .bashrc either close-open the terminal or "source ~/.bashrc", to have the change applied 🤣. Maybe some newie is going crazy because his aliases don't work!

  • @user-ns8dl3vm5z
    @user-ns8dl3vm5z 5 років тому +1

    Great video, side note * u look like howie mandel by voice and face😅

  • @ElliyahuRosha
    @ElliyahuRosha 4 роки тому

    Is there a tutorial on how u make use of various of colors in the output?

  • @mohamedfouad2304
    @mohamedfouad2304 4 роки тому

    bro, whats the equalizer window? some kind of minimal video casting prog?

  • @westhouse4641
    @westhouse4641 2 роки тому

    Does arrow key up not cycle through shell command history on all systems?

    • @nihancj
      @nihancj 2 роки тому

      Yes it does and it is much easier if you simply just want to type that command but using❗ can be useful when you are typing that command after some other command. For eg: sudo !vim

  • @muellerhans
    @muellerhans 5 років тому

    1:26 that's not the behaviour for the bash shell. How to enable it for that?

  • @elliotalderson876
    @elliotalderson876 Рік тому

    What's the type of terminal his using?

  • @codychan4992
    @codychan4992 5 років тому

    Didn't know the power of "!", although I use fish-shell, thank you