Saving Time At The Command Line

Поделиться
HTML-код
  • Опубликовано: 27 дек 2024

Комментарии •

  • @esra_erimez
    @esra_erimez 5 лет назад +354

    ; 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!

  • @ViniciusProvenzano
    @ViniciusProvenzano 5 лет назад +71

    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 5 лет назад

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

  • @dfnkt
    @dfnkt 5 лет назад +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 лет назад +37

    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`.

  • @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.

  • @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.

  • @hammerheadcorvette4
    @hammerheadcorvette4 4 года назад +23

    Luke Smith : "Don't cat into grep"

    • @polgzz
      @polgzz 4 года назад +4

      Dude, he says that himself seconds after!

  • @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 5 лет назад +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 5 лет назад +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

  • @jasonmiani8108
    @jasonmiani8108 5 лет назад +2

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

  • @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!

  • @OnlyJudas
    @OnlyJudas 5 лет назад

    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.)

  • @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.

  • @aristotelispapageorgiou4627
    @aristotelispapageorgiou4627 5 лет назад +1

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

  • @ianpan0102
    @ianpan0102 5 лет назад

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

  • @michaelvivirito
    @michaelvivirito 5 лет назад +5

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

  • @med5032
    @med5032 5 лет назад +5

    THIS. CHANGES. EVERYTHING.

  • @davidgomez79
    @davidgomez79 5 лет назад +36

    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 !$.

  • @ZzBiazZ
    @ZzBiazZ 5 лет назад +16

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

  • @brcts
    @brcts 5 лет назад +2

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

  • @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!

  • @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

  • @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!

  • @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

  • @123liveo
    @123liveo 3 года назад +1

    You have some amazing advice. Cheers!

  • @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.😁

  • @josephbrandenburg4373
    @josephbrandenburg4373 3 года назад

    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)

  • @ThomasMatason
    @ThomasMatason 5 лет назад +1

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

  • @aaronlippincott7385
    @aaronlippincott7385 5 лет назад +1

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

  • @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.

  • @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.

  • @mentalmarvin
    @mentalmarvin 5 лет назад +9

    Cmatrix is running on turbo today?

  • @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

  • @Tala2n
    @Tala2n 3 года назад

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

  • @Delis007
    @Delis007 5 лет назад +2

    Useful tips that save tons of time, thanks!

  • @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 5 лет назад

      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 5 лет назад

      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 5 лет назад

      @@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

  • @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.

  • @ramit7
    @ramit7 2 года назад

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

  • @DaveSomething
    @DaveSomething 5 лет назад +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!

  • @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.

  • @farjamful
    @farjamful 3 года назад

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

  • @voiceoftreason1760
    @voiceoftreason1760 5 лет назад +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  5 лет назад +1

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

  • @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.

  • @faisal.fs1
    @faisal.fs1 5 лет назад +1

    Dude you deserve more subs!!

  • @mdalwakilpersonal7437
    @mdalwakilpersonal7437 3 года назад

    Really short and useful video, thanks alot

  • @ulfgj
    @ulfgj 5 лет назад +1

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

  • @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!

  • @brainplot
    @brainplot 5 лет назад

    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 :)

  • @shftn2gear97
    @shftn2gear97 3 года назад

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

  • @RichardThomas341
    @RichardThomas341 5 лет назад +1

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

    • @RichardThomas341
      @RichardThomas341 5 лет назад +1

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

    • @DistroTube
      @DistroTube  5 лет назад +1

      Powerlevel10k theme for zsh.

    • @RichardThomas341
      @RichardThomas341 5 лет назад

      @@DistroTube Great, thanks!

  • @AnzanHoshinRoshi
    @AnzanHoshinRoshi 5 лет назад +1

    ! Thank you, Derek.

  • @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...

  • @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.

  • @tintat2
    @tintat2 3 года назад

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

  • @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.

  • @anujpancholi8293
    @anujpancholi8293 5 лет назад +2

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

  • @sleepyeyesvince
    @sleepyeyesvince 5 лет назад +1

    Instantly installed tldr. Thanks DT!

  • @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.

  • @craigw4644
    @craigw4644 4 года назад

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

  • @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.

  • @BartekJuszczak
    @BartekJuszczak 4 года назад

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

  • @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 !!

  • @timelesstrance3720
    @timelesstrance3720 5 лет назад +1

    Ctrl l is a good binding for regular bash

  • @chongchonghe3748
    @chongchonghe3748 5 лет назад +1

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

    • @DistroTube
      @DistroTube  5 лет назад

      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. ;)

  • @wiyang-123
    @wiyang-123 5 лет назад +1

    What terminal are you using? it looks cool.

  • @praetorxyn
    @praetorxyn 5 лет назад

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

  • @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!

  • @muellerhans
    @muellerhans 5 лет назад

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

  • @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.

  • @jasongomez5344
    @jasongomez5344 5 лет назад +1

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

  • @ElliyahuRosha
    @ElliyahuRosha 5 лет назад

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

  • @mohamedfouad2304
    @mohamedfouad2304 5 лет назад

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

  • @nathanpoulos1733
    @nathanpoulos1733 3 года назад

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

  • @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.

  • @westhouse4641
    @westhouse4641 3 года назад

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

    • @nihancj
      @nihancj 3 года назад

      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

  • @vfmadd231pd
    @vfmadd231pd 5 лет назад

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

  • @bugracansefercik917
    @bugracansefercik917 5 лет назад +3

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

  • @flipup556
    @flipup556 3 года назад +1

    wow never heard of tldr before thanks!

  • @user-ic7cj8lq9z
    @user-ic7cj8lq9z 5 лет назад

    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

  • @DaveSomething
    @DaveSomething 5 лет назад +1

    thanks for the tldr one... nice.

  • @bobmccoy9926
    @bobmccoy9926 Год назад

    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.

  • @SnortDefence
    @SnortDefence 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

  • @mariozamora1369
    @mariozamora1369 5 лет назад

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

    • @DistroTube
      @DistroTube  5 лет назад +1

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

    • @mariozamora1369
      @mariozamora1369 5 лет назад

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

  • @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 ^^

  • @rodneyjameslandry
    @rodneyjameslandry 5 лет назад +1

    Thanks, learned something new.

  • @elliotalderson876
    @elliotalderson876 2 года назад

    What's the type of terminal his using?

  • @InfiniteQuest86
    @InfiniteQuest86 3 года назад +1

    Yeah !! is cool, but I just hit up, ctrl+a and type sudo. Bam. Emacs users gonna know what I'm talking about.

  • @SkyFly19853
    @SkyFly19853 5 лет назад +1

    Useful tips...
    💯💯💯

  • @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

  • @HeyItsSahilSoni
    @HeyItsSahilSoni 5 лет назад

    Why do you have a got repo at home?

  • @nerrufam7105
    @nerrufam7105 5 лет назад

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

  • @pichass9337
    @pichass9337 5 лет назад +1

    Nice and informational

  • @mehmetedex
    @mehmetedex 5 лет назад

    *What font is that?*
    I was searching for a font like that.

  • @Spam-lo3fu
    @Spam-lo3fu 5 лет назад +1

    How come the terminal looks like this? How'd you did it?

    • @Eragon-qc7zh
      @Eragon-qc7zh 5 лет назад

      powerlevel10k +oh my zsh or any other powerline fonts

    • @Spam-lo3fu
      @Spam-lo3fu 5 лет назад

      @@Eragon-qc7zh can you explain how I would go about it please?

    • @Eragon-qc7zh
      @Eragon-qc7zh 5 лет назад

      @@Spam-lo3fu github.com/robbyrussell/oh-my-zsh/wiki/Installing-ZSH
      github.com/romkatv/powerlevel10k
      Just follow the instructions on the pages

    • @Spam-lo3fu
      @Spam-lo3fu 5 лет назад

      @@Eragon-qc7zh I followed the instructions to install it, but once I logged back in, my terminal just has "user% ".

    • @Spam-lo3fu
      @Spam-lo3fu 5 лет назад

      @@Eragon-qc7zh Alright, the second link worked, but my aliases aren't. My ".bashrc" file has the alias "l" (L) for "ls" and other like "la" for "ls -A" but I get these messages: "zsh: command not found: la"
      Do you know how to fix this?

  • @machman23
    @machman23 5 лет назад

    Did not know about tldr , thank-you

  • @ZaneyOG
    @ZaneyOG 5 лет назад +1

    Mastadon Gang represent!

  • @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)

  • @peabody4217
    @peabody4217 5 лет назад +1

    how do i clear the terminal history??

  • @vamshikrishna4511
    @vamshikrishna4511 5 лет назад

    Isn't "grep search filename" better than 'cat filename | grep search' ?