Тёмный

My 5 Favorite Linux Shell Tricks for SPEEEEEED (and efficiency) 

tutoriaLinux
Подписаться 207 тыс.
Просмотров 642 тыс.
50% 1

My favorite tricks for becoming a Linux Shell Speed Demon (this assumes Bash/readline)
1:04 - sudo !! - re-run previous command with 'sudo' prepended
1:53 - ctrl-k, ctrl-u, ctrl-w, ctrl-y - cutting and pasting text in the command line
3:24 - practical kill/yank example
4:04 - use 'less +F' to view logfiles, instead of 'tail' (ctrl-c, shift-f, q to quit)
6:25 - ctrl-x-e - continue editing your current shell line in a text editor (uses $EDITOR)
7:54 - alt-. - paste previous command's argument (useful for running multiple commands on the same resource)
9:18 - reset - resets/unborks your terminal
My step-by-step project-based Linux course for beginners: www.udemy.com/course/hands-on...
Free Linux Sysadmin Course Playlist: • The Linux Basics Cours...
DigitalOcean referral link: m.do.co/c/0380a1db56a6
Patreon: / tutorialinux
Official Site & e-mail list: tutorialinux.com/
Twitter: / tutorialinux
Facebook: / tutorialinux
Podcast: kernelpanicpodcast.com

Наука

Опубликовано:

 

2 июн 2018

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 731   
@tutoriaLinux
@tutoriaLinux 6 лет назад
~~~ Timestamps to specific sections are in the description! ~~~
@planktonfun1
@planktonfun1 6 лет назад
ctrl+a and ctrl +e goes to the start and last, I find myself using this most
@chaoswires2734
@chaoswires2734 6 лет назад
Thanks for tips! Few more useful commands. The easiest way to create empty file is typing >filename I also often need to convert unix timestamp to hooman readable form, "date --date=@your_date_in_unix_format" does the job.
@noele2980
@noele2980 5 лет назад
i literally screamed when i learned the kill / yank
@DaleHawkins
@DaleHawkins 5 лет назад
Becoming proficient in emacs makes the editing commands second nature. 🙂
@priit7777
@priit7777 3 года назад
@@planktonfun1 but why? your keyboard also doesn't have home and end keys? much easier than some ctrl combinations.
@GBGSK
@GBGSK 5 лет назад
> Bang bang > password shot me down > Sudo .. BANG BANG "Torvald Sinatra"
@karlheinzneugebauer
@karlheinzneugebauer 3 года назад
BANG BANG rather reminds me of "Rammstein - Feuer Frei"
@vass0922
@vass0922 3 года назад
@@karlheinzneugebauer hey thanks thats a great way to remember that!
@hayksk
@hayksk 3 года назад
Nancy Sinatra :) ?
@karlheinzneugebauer
@karlheinzneugebauer 3 года назад
@@hayksk Had to google who that is. Appears to be the daughter of Frank. Interesting.
@hayksk
@hayksk 3 года назад
@@karlheinzneugebauer Yes, she is.
@hellangel28
@hellangel28 6 лет назад
i really love the fact that you wrote exactly what you are going to explain in the description with timestamps!
@weasel6205
@weasel6205 3 года назад
Yeh, same, I was prompted to subscribe as my patience run out not because I should definitely learn the rest of the content but because,"ADHD," 🤣, prompted straight to subbing and turning notification on, lamo.
@HenrikAlsingFriberg
@HenrikAlsingFriberg 5 лет назад
"Alt + backspace" is more useful than "ctrl + w" in my oppinion. While the latter only stops at whitespaces, the former also stops at special characters, e.g. slashes, so you can edit your way to parent directories much faster.
@tutoriaLinux
@tutoriaLinux 3 года назад
Solid advice! Will try to re-wire my brain to try it out.
@sarthaks95
@sarthaks95 3 года назад
Both are useful but for different cases. Clear entire arg or go word by word. Personally I use both depending on the case.
@richardcampbell2438
@richardcampbell2438 3 года назад
I use a Mac terminal and there is no Alt key, but ^w works just fine enough for me
@novimartyn
@novimartyn 3 года назад
@@richardcampbell2438 On the Mac I think you need to use Escape instead of Alt
@ernestdesouza8888
@ernestdesouza8888 3 года назад
@@richardcampbell2438 dump Ur mac if ur using Linux ! Actually anything is fine ...depends on the person !!!
@whiskeytuesday
@whiskeytuesday 6 лет назад
Instead of you can also just use !$ the same way you used !! in the first tip. There's actually a lot of notation for this which is terminal agnostic and supported in zsh as well as bash and probably others. For instance !-2 gives you the command before last, !-3 the one before that etc. $ on the end gives you the last argument of that command. !^ gives you the first argument, !:2 or !* gives the second argument. All of these things can be combined too, for instance !-3:2-$, which gives the second to last argument of the third-last command or !-3:2-3 which gives the second and third arguments to the third last command. Hard to keep straight at first but a very powerful way of getting around once you jam it into your head.
@Barbarian.Streisand
@Barbarian.Streisand 4 года назад
i could definitely have a beer with this guy.
@cgme7076
@cgme7076 3 года назад
Yeah, he seems like a cool guy
@jplflyer
@jplflyer 3 года назад
I've been programming professionally for 40 years, most of that in the Linux world, and it's amazing the learning process never ends.
@JerryPenna
@JerryPenna 3 года назад
Yeah, I’ve used less a ton but not with other flags. I tried less +F but didn’t work.
@allen_joji
@allen_joji 2 года назад
Do you still love programming ?
@jplflyer
@jplflyer 2 года назад
@@allen_joji Yeah, I do. I'll eventually retire, but it's unlikely I'll ever stop programming. I'll do my own projects is all. My opinion about careers: you should find something you can be passionate about, that you want to do even if you weren't being paid. We spent far too much of our lives at our jobs, and do you want it to be soul-sucking? The last people I want to work with: the ones who see it as a job. They're only there for the paycheck. Yeah, if I won the lottery, I'd quit the day job. But I'd still program. I'd just get to pick what I work on.
@ernestogutierrez7877
@ernestogutierrez7877 3 года назад
you had me at `sudo !! ` shaking my head at the amount of time i've wasted not knowing about this...
@ChunkyDrew33136
@ChunkyDrew33136 5 лет назад
VERY useful tips here, I plan to start using them regularly. You’re proving to be my most useful resource on YT in my Linux journey. Also enjoying your sysadmin series.
@RedStefan
@RedStefan 5 лет назад
Sudo!! I hit the ground Sudo!! That awful sound Sudo!! My baby shot me down
@elijah11162
@elijah11162 3 года назад
11 minutes later and I don't know how I survived without these tricks for so long. Great stuff man
@momashi69
@momashi69 5 лет назад
Huge Thanks for the 2 shell videos you've made. Been using CLI over a decade but did not know any of these tricks and have always found it slow and clunky when compared to the gui. Well no more, not after these massive quality of life improvements... Been 6 months since I watched these videos but I still think of you and smile the endless times a day I use these tricks!
@mostafafarzan5363
@mostafafarzan5363 3 года назад
Another nice trick worth mentioning is reverse search (Ctrl + r), where you can type a part of your command and it'll bring on the last command entered with the expression in it. You can see older/newer commands by pressing Ctrl+r and Ctrl+R respectively. It's a bit more common so maybe not really a trick, but still some people might not know about it.
@TheDave000
@TheDave000 5 лет назад
How did I not know about less +F? This literally changes everything in my job!
@nonconsensualopinion
@nonconsensualopinion 3 года назад
Maybe it's overkill, but I always just use vim. It loads very quickly and gives me the ability to search all around any log, jump to the bottom, etc. vim logfile, shift-g to get to bottom, :q to exit. Done.
@SJmurov
@SJmurov 3 года назад
@@nonconsensualopinion But does it follow?
@sarundayo
@sarundayo 6 лет назад
Just came across this channel and I love it! Thanks for showing us how wonderful Linux can be and how to use it.
@jony7779
@jony7779 6 лет назад
If you ever need to purposefully mess up a terminal like for 9:47, I've found the command "sleep 1 | vim" will do that consistently on any terminal.
@SeanNicholsEh
@SeanNicholsEh 5 лет назад
Can't believe I just upvoted a guy for messing up my terminal... XD
@tobiaskrischer9950
@tobiaskrischer9950 5 лет назад
could not confirm: root@debootstrap:~# sleep 1 | vim -bash: vim: command not found root@debootstrap:~# /s
@iam3377
@iam3377 4 года назад
Vim is seriously the best text editor
@aeelinnannelie5651
@aeelinnannelie5651 3 года назад
It does not happened to me. Maybe because I have Neovim installed
@twb0109
@twb0109 3 года назад
@@iam3377 laughs in nvim
@tildessmoo
@tildessmoo 5 лет назад
Quick note on the keyboard shortcuts: These are default Bash terminal commands, which are based on Emacs commands; however, you can also add "set -o vi" to your .bashrc to set Vi mode, and then you can use Vi shortcuts instead. Since one of the big things that keeps Vi[m] competitive with Emacs is the power of its navigation commands, this can make you even more efficient, though the learning curve is pretty severe if you're not already used to navigating in Vi, so obviously this is only something to do if it's already your preferred editor.
@AleksandarBosakov
@AleksandarBosakov 6 лет назад
Holy cow, it's been 12 years since the last time I used Windows on my home PC, and I do use the CLI a lot, yet I didn't know some of those tricks. Great work!
@ryanbard3560
@ryanbard3560 6 лет назад
Fyi, another nice thing about using less over tail is that you can put in some search terms before kicking on the live tail mode and they'll be highlighted. Ex. put in a /error|warning|critical then hit shift+F and as things scroll by, error, warning, and critical will be highlighted.
@beeeeep
@beeeeep 5 лет назад
You can even use & interested of / to filter what you like to see.
@ALTracer
@ALTracer 5 лет назад
| ccze --mode ansi also does that
@KirtFitzpatrick
@KirtFitzpatrick 3 года назад
I wonder if there is a way to get automatic highlighting like with bat.
@toncho1986
@toncho1986 6 лет назад
Nice work, dude! I love your videos, keep it up :D
@neloangelo__13
@neloangelo__13 6 лет назад
Thank you so much Dave for sharing your knowledge, looking forward for future videos. Keep it up mate!
@TesserId
@TesserId 3 года назад
8:52 LOL "Dammit Ubuntu. Ruin even..." Now I know you're a command-line warrior.
@aronhegedus
@aronhegedus 3 года назад
I already know I'm going to use that command line yanking so much, thank you!
@tobiassinghania3698
@tobiassinghania3698 5 лет назад
Great video! What I use probably the most is Ctrl+r to quickly search the command history. By using Ctrl+r you can go to the next hit and with Ctrl+R to the previous.
@josephknightcom
@josephknightcom 5 лет назад
thanks
@frydac
@frydac 3 года назад
try fzf, it makes ctrl-r a dropdown list (i think it opens a tmux pane on the fly iirc) and lets you search in a fuzzy manner. And also search for files like that, I can't live without it anymore..
@tobiassinghania3698
@tobiassinghania3698 3 года назад
@@frydac yes, fzf is really awesome in various regards :)
@EdselAdap
@EdselAdap 3 года назад
Great video! I consider myself a seasoned shell user since I've been doing this stuff for 30+ years but you've taught me some new stuff. Two things to add though to fix a borked terminal is "stty sane" and "echo ctrl-v ctrl-o". Excellent tutorial!
@vrvrvr81
@vrvrvr81 5 лет назад
first useful shell video tutorial I ever ran into
@IRgEEK
@IRgEEK 5 лет назад
Fantastic post Man! Wanted some Ninja tricks to share with my Students tomorrow and these are perfect! Thanks so much!
@DDBAA24
@DDBAA24 5 лет назад
I remember a while back you saying your co workers would give you a hard time about using advanced commands... I can see why , I have watched a lot of tutorials , some of the things you do I haven't seen ANYWHERE else. I like this channel because even if I go way back in your history everything is still relevant and useful. I've been subscribed but I forgot to hit the bell icon , so I didn't even know you were back. Glad to hear it though.
@dylanwestphal3582
@dylanwestphal3582 3 года назад
Love these hints and tricks, I'm probably pulling at least a few into daily life - Shot dude!
@dukercs
@dukercs 3 года назад
Thank you!!! This video should never die!
@asanz1665
@asanz1665 5 лет назад
Some of those I didn’t know. You saved me loooots of minutes for sure. Thanks!
@KirtFitzpatrick
@KirtFitzpatrick 3 года назад
Great tips, thanks for sharing! I'm proud that I knew a couple already but most are new to me. I'm going to incorporate these into my day to day for sure. The comment section is gold too.
@felaflame
@felaflame 6 лет назад
Thanks for the video. Although I am using GNU/Linux for more than 15 years, I forgot about !! and I didn't know about C-x-e. Thanks.
@leteveryoneknow
@leteveryoneknow 5 лет назад
Thank you for sharing information which is immediately effective and useful.
@cdnuzzo
@cdnuzzo 6 лет назад
These videos are great! Looking forward to more and more in-depth practical and theory based tutorials.
@tutoriaLinux
@tutoriaLinux 6 лет назад
Yeah, I've got some advanced ones coming -- in-depth systemd tutorials, compiling a kernel, writing your own syscalls. Woohoo!
@dawidpomioto1595
@dawidpomioto1595 4 года назад
Realy cool shortcuts. It helped me a lot. You are great!
@locusinbloom
@locusinbloom 5 лет назад
I was expecting to be disappointed (didn't notice who published it before I clicked watch, lol) but I didn't know a single one of these, thank you! All of your videos are great.
@eduardosanchez9245
@eduardosanchez9245 6 лет назад
Loved the "BONUS ROUND!" :)
@CoreDump07
@CoreDump07 6 лет назад
very informative, i often use for example "ssh " to repeat the last ssh ... command
@Colony28
@Colony28 4 года назад
Thanks for the tips! When I saw the alt+f/b, I realized how annoying it is without it. About less +F, it's great for one logfile, but I can do tail multiple logs with tail, which is sometimes useful: tail -f /var/log/something/*.log
@Breemskin
@Breemskin 2 года назад
Less +F is brilliant! That will be quite useful for me, thanks.
@AjitV
@AjitV 3 года назад
BONUS tip was the best. I have the issue all the time especially after using gdb ... Thank you sir, U've earned a Subscriber
@uniquechannelnames
@uniquechannelnames 2 года назад
Thank you for all the work putting this together, and for teaching all us terminal plebs how to kick ass at terminal lol. Again, thank you!
@KingstonFortune
@KingstonFortune 2 года назад
wow this is just wonderful, especially the reset command for me cos lately I have been using a remote shell and it usually gets weird after a while, but I tend to just manage...so this definitely works and I will be using it from now on, thanks!
@kleetus88
@kleetus88 5 лет назад
as an adjunct to !!, I find I use !$ A LOT. This handy thing refers to the last argument on the last command. e.g. mkdir -p /home, then cd !$. This will be equiv to cd /home.
@jonatansmithtubed
@jonatansmithtubed 3 года назад
Try 'ESC + .'
@KirtFitzpatrick
@KirtFitzpatrick 3 года назад
@@jonatansmithtubed What's esc + do?
@jonatansmithtubed
@jonatansmithtubed 3 года назад
Kirt, it is "ESC" and the "." (dot) Repeat last argument
@apistosig4173
@apistosig4173 4 года назад
fabulous presentation - muchas gracias
@htl2001
@htl2001 6 лет назад
less -n helps a TON on large files (doesn't count line numbers). -S can be useful in logs as well (no wrap)
@codeman99-dev
@codeman99-dev 3 года назад
I almost always use `less -FRS` -F will "quit if one screen" or "there is no need for scrolling" -R will allow correct width calculation of control characters. Especially useful if you are piping a command and still want the color output.
@JerryPenna
@JerryPenna 3 года назад
Ok I’ve been using less longer than I want to admit. Will try “less -FRS”. 😂
@kpopempire1475
@kpopempire1475 3 года назад
Thank you! Very informative.
@hayksk
@hayksk 3 года назад
Super !! Thank you a lot!!! These were very useful tips.
@KarenDian1
@KarenDian1 6 лет назад
Your awesome channel popped up in my recommendations. Subscribed!
@anjumamute
@anjumamute 6 лет назад
Thank for the video, I already know someone of this tricks, but others were new.
@user-ug8qc6tr6b
@user-ug8qc6tr6b 6 лет назад
Nice tips and clean explanation. Thank you
@Tomab89
@Tomab89 5 лет назад
Very handy tips. Appreciated.
@BBRR442
@BBRR442 3 года назад
Awesome vid!! Very helpful!
@rikfomiharbi6077
@rikfomiharbi6077 3 года назад
Sudo bang bang ! Something can never be forgotten 😂❤
@TomGrubbe
@TomGrubbe 3 года назад
Thx for the ctrl-k, ctrl-u, ctrl-w, ctrl-y tip. I didn't know that one. Even works in Zsh.
@zerbitx
@zerbitx 3 года назад
The ctrl-x-e trick is great for small modifications to commands from your history as well. You can up arrow, or bang or history | grep or whatever to a previous long gnarly command, then hit ctrl-x-e to make easier surgical modifications to it.
@WaichiTsang
@WaichiTsang 3 года назад
These tricks saved my day
@AndrewDeFaria
@AndrewDeFaria 3 года назад
Good video. I learned a couple of new tricks! One trick I knew already and always use is the Alt- thing. I describe it to others this way - Alt- brings up the last "word" of the previous command. Think of it as an object. So you do ls /tmp/file. Now /tmp/file is the object. Want to know more about the object? Type ls -l Alt-. Contents? - more (or less) Alt-. File's junk - rm Alt-. But what's more is say you have this in your history: 501 touch /tmp/file 502 ls /tmp/file 503 echo file? 504 uname -a 505 history Typing Alt- at the command prompt will bring forth "history". But typing another Alt- will bring up "-a". Another one and you get "file?". One more and you get "/tmp/file". So if you want that Alt- object because it was say a filename object but it was not the last word of the immediately preceding command then keep hitting Alt- until you get back that file object.
@codingwithgraceandtruth2456
@codingwithgraceandtruth2456 2 года назад
very good tutorial, powerful commands, thank you.
@keratishvili
@keratishvili 6 лет назад
Thank, I really appreciate less command explanation and would love to see more videos.
@fbicknel
@fbicknel 3 года назад
Nice collection. Thanks for the video!
@awuma
@awuma 6 лет назад
Many thanks! On linux since 1995, yet most of this was new to me.
@sashamc309
@sashamc309 6 лет назад
awuma whoah! you really should have known about !! or Ctrl+W. I'm working on the terminal for 3 years and I knew most of this.
@sign333b
@sign333b 5 лет назад
@@sashamc309 congrats
@JerryPenna
@JerryPenna 3 года назад
1999 abs same feeling.
@rafaelcascalho4180
@rafaelcascalho4180 6 лет назад
These are veeeeeery helpful!! Thanks bro :D
@pmdpaula
@pmdpaula 6 лет назад
Thanks a lot for these tricks.
@mykolakriukov1252
@mykolakriukov1252 3 года назад
Awesome tips, thanks a lot!
@amoohesam
@amoohesam 5 лет назад
Very nice tutorial, thanks
@flakkanon
@flakkanon 6 лет назад
Thanks for all your free content :)
@erezhazan100
@erezhazan100 4 года назад
Thanks!! really helpful commands!!
@osquigene
@osquigene 6 лет назад
For tip 5 you can just do "mtr !$" (last argument) or "mtr !*" (all arguments) which both have the advantage of not being terminal dependent (just relies on history). I think even without history "mtr $_" would work. Or you can even have a bit of fun "^ping^mtr^"
@osquigene
@osquigene 5 лет назад
Yes, if you want the detail of that you can refer to 9.3.1 and 9.3.3 in bash manual. You can do stuff like, creating a file: touch A/B/C/d.txt then moving to the directory: cd !$:h # h: Remove a trailing pathname component, leaving only the head. You'll also see: ^string1^string2^ Quick Substitution. Repeat the last command, replacing string1 with string2. Equivalent to !!:s/string1/string2/. Similar things exists for parameter substitution (which I personally only use for file names/paths manipulation): www.gnu.org/software/bash/manual/bashref.html#Shell-Parameter-Expansion www.tldp.org/LDP/abs/html/parameter-substitution.html You have an example in the documentation that shows how this can be used: www.gnu.org/software/bash/manual/bashref.html#A-Programmable-Completion-Example
@fahadkhanchughtai3279
@fahadkhanchughtai3279 3 года назад
Just Wao, I am gonna use em. Thanks Dude!
@Majlo2L8
@Majlo2L8 6 лет назад
Perfect tricks. thank you so much!
@ChrisCox-wv7oo
@ChrisCox-wv7oo Месяц назад
The less instead of tail tip is great.
@jefferytownsend7787
@jefferytownsend7787 3 года назад
That Ctrl + K and Ctrl + Y is legit. Thanks.
@cupajoesir
@cupajoesir 6 лет назад
I actually found the --curses tangent to be useful. I have cursed ubuntu myself when it popped up in a gui. Great tips keep up the good work.
@DivineRaven
@DivineRaven 3 года назад
You are a blessing, man. Thanks!
@3BMWHunter
@3BMWHunter 6 лет назад
extremely helpful! thanks for the great video
@firexfly
@firexfly 6 лет назад
Thanks for 'less +F'. There's also a program called multitail which I have been installing on servers I manage for quite a while. It lets you follow multiple log files at once, also colors.
@shanecole401
@shanecole401 3 года назад
try using tail -qf foo.log bar.log and it will show new lines to both files ordered, and if one rotates and goes away but appears later keep tailing it, all as if it was just one file
@dawiss9418
@dawiss9418 6 лет назад
Thanks i learned about ctrl + x + e and less +F.
@nissieln
@nissieln 3 года назад
Alt . is a winner! Thanks for the vid and the timestamps ^^
@andrewlemstrom3669
@andrewlemstrom3669 2 года назад
Helpful man. Thank you.
@NoCPU
@NoCPU 6 лет назад
Great tut. Very useful
@adeshas83
@adeshas83 6 лет назад
I thought I knew a lot.... Great video... Thumbs up
@joachimjohansen5796
@joachimjohansen5796 5 лет назад
Great idea with the less +F , I prefer using regular old less then pressing shift+G, it takes you to the bottom of the file and you can scroll up without gluing.
@arpitparmar2121
@arpitparmar2121 2 года назад
Awesome video man, thank you :)
@nirmitpatel7536
@nirmitpatel7536 6 лет назад
These were great, thank you.
@codenamelambda
@codenamelambda 5 лет назад
My recommendation for vim users: add ```set -o vi``` (or something like that, too lazy to look it up) to your bashrc, and use your favorite vi-keybindings in your shell (press esc to get into normal mode)
@imansh6995
@imansh6995 3 года назад
bro at first i thought you are gonna say some interesting but not useful stuff, but it was great. Thanks for Sharing , Keep up
@abzs5811
@abzs5811 4 месяца назад
Some people just aren’t cut out to be teachers Now Colt Steele is a natural born teacher right there.
@tomwimmenhove4652
@tomwimmenhove4652 3 года назад
I did not know less' +F option. Thanks a bunch, I'm sure that'll come in handy.
@rampage241
@rampage241 6 лет назад
cool video bro. 2 min in and I already liked!
@ManishKumar-uy5io
@ManishKumar-uy5io 3 года назад
Dude I'm watching this in 2021 and this super helpful. Kinda regretting went RU-vid didn't recommend earlier
@joeleenkado5761
@joeleenkado5761 4 года назад
Thanks for posting the Cheat Sheet; These things are soo handy for me.
@osgnuru
@osgnuru 5 лет назад
Thanks for the video. Love it!
@0Hasaname0
@0Hasaname0 3 года назад
Nice examples! Did learn something new! Thank you! I would also mention "Ctrl - r" for searching in .bash_history. Something I use often... Good work, guy!
@cottondai
@cottondai 3 года назад
This is awesome linux tips.
@mr.w4ttz
@mr.w4ttz 2 года назад
I like that we almost got to see your auth.log
@pianochannel100
@pianochannel100 3 года назад
One of the best projects we had in university was building our own copy of bash (stripped down a bit obviously) from scratch in C. Even though I have built my own, I learn new stuff everytime i see videos like these.
@TheSimslash
@TheSimslash 3 года назад
nice vid man, thanks for the tips and keep it up ! :)
@divinealien7620
@divinealien7620 3 года назад
thanks. this content is actually helpful.
Далее
Top 10 Linux Job Interview Questions
16:04
Просмотров 2,3 млн
Vim Basics in 8 Minutes
8:57
Просмотров 526 тыс.
КАК Я ЖИВУ БЕЗ ДЕВУШКИ!
25:30
Просмотров 1,1 млн
Signal for help
00:52
Просмотров 7 млн
12 GREAT command line programs YOU recommended!
16:25
Просмотров 214 тыс.
Why I Switched Back to Bash, And Why You Should Too
10:42
Xargs Should Be In Your Command Line Toolbag
16:24
Просмотров 95 тыс.
7 Essential Command Line Tools (2022)
9:12
Просмотров 191 тыс.
Busting 8 Common Homelab Power Efficiency Myths
19:14
Просмотров 119 тыс.
7 AWESOME Linux Terminal Applications and Utilities
11:49
Shell Tricks to Save Time in Linux
10:42
Просмотров 42 тыс.
Где раздвижные смартфоны ?
0:49
Просмотров 636 тыс.
Ноутбук БЕЗ ЭКРАНА!
0:54
Просмотров 73 тыс.
Гибкий телефон 📱
0:16
Просмотров 96 тыс.