Become a shell wizard in ~12 mins

  Рет қаралды 199,715

CODE IS EVERYTHING

CODE IS EVERYTHING

3 ай бұрын

In this video we're running through all the important things you need to know in order to get comfortable using the shell and see how you can compose commands together to build out super handy chains that'll save you a lot of time.
#terminal #linux #bash

Пікірлер: 320
@scrapp706
@scrapp706 3 ай бұрын
Underrated, it's just amazing how serene and concise this video is
@CODE_IS_EVERYTHING
@CODE_IS_EVERYTHING 3 ай бұрын
Hey, thanks!
@skyhappy
@skyhappy 3 ай бұрын
Just taught me more than a $1000 uni course I took which was supposed to be about linux. It had a week or two about cli commands but was poorly taught. Uni of Toronto btw
@StiekemeHenk
@StiekemeHenk 2 ай бұрын
ASMR: shell commands to fall asleep to
@suborno9249
@suborno9249 2 ай бұрын
At college, I was forced to learn about shell scripting, but after using Linux for more than half a year, I am enjoying every bit of it. I am still learning about shell scripting.
@t00nfish
@t00nfish 3 ай бұрын
I listen to this every evening to fall asleep in peace
@YarPirates-vy7iv
@YarPirates-vy7iv 3 ай бұрын
It's very soothing!
@SonicJ2
@SonicJ2 2 ай бұрын
This is sooo smart thank you for the idea 🎉
@claudiamanta1943
@claudiamanta1943 Ай бұрын
Oh. So you’re saying this is not a chapter from an audiobook? 😕
@YarPirates-vy7iv
@YarPirates-vy7iv Ай бұрын
@@claudiamanta1943 It's from Harry Potter and the Command Line of Doom
@sleepybraincells
@sleepybraincells Ай бұрын
0:28 shell/terminal/console/command line terminology 0:47 ls (list) 1:19 cd (current directory) 1:22 pwd (path to working directory) 1:26 echo 1:30 cat (concatenate) 1:33 touch 1:41 cp (copy) 1:47 mv (move) 1:51 convention 2:02 rm (remove) 2:24 ln (link) 2:35 less 2:50 more 2:56 man (manual) 3:27 grep (global regular expression print) (find strings) 3:36 find (find files/dir) 3:47 sed (stream editor) (find and replace text) 4:25 awk (extract text data) 4:43 sort 4:55 head, tail 5:12 piping, pipe operator < | > 5:46 xargs (split input into chunks and pass as arguments) 6:07 running subshells < $( ) > 6:32 redirection < > > 6:47 appending < >> > 6:54 file content into stdin < < > 7:04 fzf (fuzzy finder) 7:24 compgen - c (lists all cmds) 7:31 Lots of useful command combinations 11:55 key takeaways
@blackaccel
@blackaccel 29 күн бұрын
Pin this please
@somerandomguy001
@somerandomguy001 27 күн бұрын
Thanks
@ArnabGhosh-wi7pv
@ArnabGhosh-wi7pv 14 күн бұрын
this definitely needs to be pinned
@kmk20219
@kmk20219 3 ай бұрын
first time I see someone make working with CLI look aesthetic and easy. Beautiful video
@CODE_IS_EVERYTHING
@CODE_IS_EVERYTHING 3 ай бұрын
Thanks!
@nangu8896
@nangu8896 3 ай бұрын
solace?
@ValidUserName-fl3uh
@ValidUserName-fl3uh 3 ай бұрын
Alright cool , let me add fzyyyy to improve everything
@slayerxyz0
@slayerxyz0 3 ай бұрын
Worth mentioning Ctrl-R as well for hotkeys. That fzf man alias is really cool
@chyldstudios
@chyldstudios 3 ай бұрын
Well that escalated quickly.
@ryancrosby3043
@ryancrosby3043 8 күн бұрын
Who gave you privilege to crack that joke?
@BobbyMully
@BobbyMully 3 ай бұрын
Goes from newbie to advanced real quick! I use the terminal a lot as a software engineer, but this taught me a couple things and I feel like I understand some things better.
@liamkearn
@liamkearn 7 күн бұрын
This is all pretty basic stuff for most *nix natives, presented excellently though!
@BenjaminGrec
@BenjaminGrec 29 күн бұрын
Awesome and comprehensive video showing off the true capabilities of a good shell user. I realize literally everything people see, is a text doc
@Calslock
@Calslock Ай бұрын
fzf is really cool, gonna use it way more often from now on The only thing that I wish you'd also mention is how you can manipulate history too. Let's say you've done cat on some file with long path, and now you want to copy it. Instead of cp . you can do cp !!:1 . which will use first argument from latest command in history as argument. Also, cd (just cd, with no arguments) will send you to home directory and cd - will send you to previous directory.
@jhtaljaard
@jhtaljaard Күн бұрын
Very useful video 🎉 For some reason I didn't know about `Ctrl+X` + `Ctrl+E` to edit a multi-line cmd -- that is so cool and definitely needed :D
@user-il7oz8jr7x
@user-il7oz8jr7x 3 ай бұрын
probably the best video on overview of shell commands that ive seen so far
@AzinFiro
@AzinFiro 2 ай бұрын
After watching this, it feels like you can do anything with the shell. Then you find yourself needing something like "pipe into a text file, but prepend instead of append", and it turns out you need to use four commands, invoke a function, write a formal proposal, and make a pilgrimage to Dennis Ritchie's final resting place on a moonless night and chant incantations from dusk to dawn to do it.
@CODE_IS_EVERYTHING
@CODE_IS_EVERYTHING 2 ай бұрын
Haha yeah that is the sad truth. When you're within the bounds of what the shell and coreutils are good at everything is nice and simple. But once you step outside of that, it quickly feels impossibly complex.
@danydanger
@danydanger 3 ай бұрын
One of the finest videos ever made for the shell enthusiast, kudos to u man, eagarly awaiting for more !!!!!
@cobraflunkie
@cobraflunkie 3 ай бұрын
I never thought the shell could be relaxing but you have done it. Good work.
@PatrickBrentlinger
@PatrickBrentlinger 3 ай бұрын
Perfect content, helpful and calm, thanks. Seeing how someone uses tools is so helpful as I learn to use them.
@HopeUnveiled
@HopeUnveiled 3 ай бұрын
I just become death destroyer of the terminal world!!
@sevos
@sevos 3 ай бұрын
Great fzf examples, thank you so much!
@ArnabGhosh-wi7pv
@ArnabGhosh-wi7pv 14 күн бұрын
really useful video. I am using bash for a few years now, and only recently i am starting to realize how powerful the pipe command is
@willd0g
@willd0g 16 күн бұрын
Have been looking for this exact type of vid now for sometime now. Thank you it was done very well. The final wrap up at the end was perfect.
@demidevil666
@demidevil666 2 ай бұрын
Thank you so much for bringing fzf to my attention! Just the type of tool I've always wanted but never knew existed.
@miigon9117
@miigon9117 3 ай бұрын
The Ctrl-X Ctrl-E to edit command in $EDITOR is actually very very useful! Thanks for telling us that!
@Fonzie2909
@Fonzie2909 3 ай бұрын
Nice, really liked the concise explanations for the basic commands
@mechwarrior83
@mechwarrior83 3 ай бұрын
Low sub channel + quality content like this = instant subscribe
@cognishn
@cognishn 19 күн бұрын
Voice + command techniques + explanations are superb.❤
@rodricbr
@rodricbr 3 ай бұрын
I've been messing around with shell for almost 4 years now, I really love the power and flexibility of it, it's really powerful
@thewadegreen
@thewadegreen 3 ай бұрын
This is such a high quality video! It starts off great with some introductory concepts, but then accelerates at a great pace and shows how to put things together. Really was great for someone like myself who is comfortable in the shell but looking to level up. C-x C-e was literally a paradigm shift for me, and has changed how I interact with the terminal. Thanks for the awesome video, looking forward to more great content!
@deepkirdat5724
@deepkirdat5724 3 ай бұрын
Awesome video. Loved it. One of my favourite is 'seq'. Prints out a sequence of numbers. Handy and fast. Also one dirty trick to go to your home directory is only typing 'cd' and hitting enter. No need add ~.
@jjones3705
@jjones3705 3 ай бұрын
Great video! I already know quite a bit about the CLI, but the fzf tool is super cool!! Will definitely use thanks a ton!
@Hersatz
@Hersatz 3 ай бұрын
Explained more and better in 12 minutes than our teachers in a whole semester.
@dameonb4586
@dameonb4586 3 ай бұрын
Most useful $SHELL video EVER! I learned so much.
@dawnrazor
@dawnrazor 3 ай бұрын
This is great, I’ve been using unix shell scripting a while but not wholeheartedly so haven’t really learnt it properly because i have extensive knowledge of powershell, even to the extent that install powershell on Mac and use it. But I realise that all the funky and fancy stuff in ps, I can do in way less code and probably more so just using the unix approach. Fzf is just fantastic and so is this video, you have given me inspiration to go head first into unix shell scripting so thanks 💪
@yashbijlani6652
@yashbijlani6652 3 ай бұрын
Thanks for the useful info! It was awesome seeing the count of monte cristo being used for some examples, its my favourite book.
@CODE_IS_EVERYTHING
@CODE_IS_EVERYTHING 3 ай бұрын
Im glad to hear it! It’s my favorite book too.
@Redyf
@Redyf 21 күн бұрын
Wow, I thought I knew stuff in the terminal until watching this video xD. Thank you so much for sharing your knowledge with us, I'll make sure to implement this tips in my workflow
@OneManCanStopTheMotorOfWorld
@OneManCanStopTheMotorOfWorld 2 ай бұрын
excellent content and delivery. this was incredibly executed. Subbed
@KerboOnYT
@KerboOnYT 2 ай бұрын
Nice video. I've been using Linux for 30 years and learned some new commands, such as fzf. One thing I would add is the tac command. It's cat but in reverse, which is sometimes handy
@user-ii4el6co5t
@user-ii4el6co5t 2 ай бұрын
I like the calming background music. Kept me from uncontrollably breaking down and taking pepto again
@alecsandroo7
@alecsandroo7 3 ай бұрын
Great video ! Btw in your node_module cleanup command you could put 2 inside the bracket of your cat command to get only the second part of the entry and not trying to cat the size of the folder like such: fd 'node_modules' -HIt d | xargs du -sh | sort -hr | fzf -m --header "Select which ones to delete" --preview 'cat $(dirname {2})/package.json' | awk '{print $2}' | xargs -r rm -rf
@Markadown
@Markadown 29 күн бұрын
Holy crap. I learned some cool new tricks. Thank you. I was really skeptical at first.
@driden1987
@driden1987 3 ай бұрын
My line editing became a lot less painful once I figured out I could use the emacs bindings on it. Also, I didn’t know about c-x,c-e which in retrospect makes a lot of sense. Thanks for teaching me something
@BruceAlmighty1
@BruceAlmighty1 22 күн бұрын
So useful. Awesome video thank you
@JetJockey87
@JetJockey87 3 ай бұрын
I know I've used tail before when I needed to iter over a very large dir with an unknown amount of empty folders which would break another workflow. Amazing how fast it ran, just recursing through each level and nuking every empty dir it came across
@MrVampify
@MrVampify 22 күн бұрын
I am a self proclaimed shell wizard and learning sed can use any delimiter has blown my mind
@CODE_IS_EVERYTHING
@CODE_IS_EVERYTHING 22 күн бұрын
That one is definitely a game changer.
@JavierHarford
@JavierHarford 3 ай бұрын
Bat instead of less works amazing too (great colour output)
@m4rt_
@m4rt_ 3 ай бұрын
another good one is moar
@wetfloo
@wetfloo 3 ай бұрын
bat, eza, fd, ripgrep, dust are all great
@JavierHarford
@JavierHarford 3 ай бұрын
@wetfloo a man of culture 🏆
@icantcomeupwithnames469
@icantcomeupwithnames469 29 күн бұрын
Yeah, the biggest tip is to not try to remember everything. You naturally memorize things you use frequently, and for everything else, that's what documentation is for. On that note, / and ? are very important keybinds for many text viewers, as they let you search forwards and backwards. Very useful for finding relevant parts of manuals.
@Torqu3e
@Torqu3e 3 ай бұрын
Impressed that you introduced me to a couple of commands I was not aware of and I pride myself in writing one liners that wrap 3 lines. Specifically `compgen` and `fd`. The latter of course written by the same fellow who's created `bat` which is wonderful replacement for `cat`. Another interesting way to use `xargs` is by inserting the output in a specific location in a command. e.g. $ aws ecs list-clusters | rg blah | cut -d / -f 2 | tr -d '",' | xargs -n1 -I{} aws ecs describe-services --services {} --cluster {} One I use fairly often while writing a long command where I need to switch to looking something else up is prepending the command with a `#` and hitting return, it parks the command as a comment which you can go back to editing but doesn't execute anything when initially entered. Try this in a chromium based browser with a ton of tabs open... `cmd + shift + a`... start typing the title of what you are looking for ;)
@alicewyan
@alicewyan 3 ай бұрын
didn't know you could do that with xargs, very cool!
@petersansgaming8783
@petersansgaming8783 2 ай бұрын
Damn, I thought the video might be too basic for me but I have never seen fzf being used like that. Love it.
@petrisss2047
@petrisss2047 3 ай бұрын
Great information and nice background noice. Helps you concentrate. Thanks for this. I hope you do many more videos on Linux!
@NostraDavid2
@NostraDavid2 3 ай бұрын
The dash can sometimes be used to use the previous value/location. "cd -" lets you go back to where you were. Nice if you cd into some root folder and want to go to where you were. Same goes for "git checkout -"; if you are in your branch, checkout to master to git pull, but want to return to the branch you were just in.
@demolazer
@demolazer 2 ай бұрын
FZF is the tool I didn't know I needed.
@CODE_IS_EVERYTHING
@CODE_IS_EVERYTHING 2 ай бұрын
I’m addicted to it
@richizzz1
@richizzz1 3 ай бұрын
this is absolutely a gem :) thank you for the video and learning us nice stuff, you just got a new subscriber
@davidzwitser
@davidzwitser 2 ай бұрын
This one is the best! To the point and powerfull. Thanks so much!
@SuperMutantSomething
@SuperMutantSomething 3 ай бұрын
Been working in cli server for 2, years and I knew every command. I'd like to add 'history | grep "whatever"' for when you'd reuse some complex commands.
@I_Am_McZee
@I_Am_McZee Ай бұрын
Great video PLUS.The music is very relaxing.
@RedPorch
@RedPorch 28 күн бұрын
Thanks for posting this!
@rigbymama8436
@rigbymama8436 3 ай бұрын
I was trying to find a vid like this for a while now haha. Thank u 😁
@gabereiser
@gabereiser 3 ай бұрын
That fzf is amazing.
@thenefariousnerd7910
@thenefariousnerd7910 3 ай бұрын
Never knew about the -f option for tail. Got a feeling I'll be using that quite a bit now!
@CODE_IS_EVERYTHING
@CODE_IS_EVERYTHING 3 ай бұрын
Excellent, it definitely comes in handy, especially when you’re doing server admin type stuff
@LukasSmith827
@LukasSmith827 3 ай бұрын
thank you so much! I've drastically changed my config.fish because of this video
@avi7278
@avi7278 3 ай бұрын
Great format, pleasing voice
@SonicJ2
@SonicJ2 2 ай бұрын
Your channel is beautiful Bro. It’s just beautiful.
@francis3603
@francis3603 3 ай бұрын
Pretty concise, subscribed!
@dooza
@dooza 3 ай бұрын
Great video, hope you make more!
@TeamDman
@TeamDman 3 ай бұрын
Great video! Thanks!
@DeathSugar
@DeathSugar 3 ай бұрын
man works mostly only for coreutils, but not things like ripgrep, fd, fzf, jq etc, coz they don't usually provide it. So if you don't wanna google and your use case is trivial you could install tldr so it would provide some quick use examples. some OSes are POSIX compatible, but their commands could have different set of argument options. Same idea with subshell syntax, as well as advanced redirections. Also, if you forgot how to zip or unzip things using tar you can use mnemonic called "german voice" Compress Ze File -> tar -czf eXtract Ze File -> tar -xzf
@CODE_IS_EVERYTHING
@CODE_IS_EVERYTHING 3 ай бұрын
Amazing, I had never heard of the german voice mnemonic, but that is perfect.
@DeathSugar
@DeathSugar 3 ай бұрын
@@CODE_IS_EVERYTHING seen it on Tweet shot back in a day, remember it since
@hypnogri5457
@hypnogri5457 3 ай бұрын
Why shouldn't man work for ripgrep, fd, fzf, etc? All those examples you listed work with man for me. "man rg", "man fzf", "man fd", "man jq"
@DeathSugar
@DeathSugar 3 ай бұрын
@@hypnogri5457 because man uses specially formated text files located at certain places (man man can clarify the detes). When you install it from apt, aur, pacman or whatever else they usually do not provide those text files, so your only documentation located in under --help argument. So if it's works for you then someone made them for your OS distro.
@hypnogri5457
@hypnogri5457 3 ай бұрын
@@DeathSugar thank you
@209_Violate
@209_Violate 2 ай бұрын
you opened my eyes. ty~
@comosaycomosah
@comosaycomosah 3 ай бұрын
wow bro keep it well made and just great overall!
@polares8187
@polares8187 3 ай бұрын
Amazing video. You are the king
@oblivion_2852
@oblivion_2852 21 күн бұрын
Some more modern tools which are great are jq, yq, xq. Which are a family of tools for json query, yaml query and xml query.
@pauloseixas5452
@pauloseixas5452 3 ай бұрын
Thank you very much because I'm a noob in programming i barely use my linux mostly because I'm still struggling with learning my first programming language so I'll put all the tips into a written note on paper so when there's a need to use i can start using by accessing my external hard drive called paper while leaving my internal hard drive still struggling with learning programing
@HEYPIGYEAHYOU
@HEYPIGYEAHYOU 3 ай бұрын
Fantastic presentation & info, subd!
@phpsoftwareengineering
@phpsoftwareengineering 3 ай бұрын
Great video!
@Parker8752
@Parker8752 2 ай бұрын
Haven't used bash in ages. A lot of the keyboard shortcuts are shared with emacs, since they're both part of the gnu project.
@user-ms4gx9ks1k
@user-ms4gx9ks1k 3 ай бұрын
Great content
@wazuma
@wazuma 3 ай бұрын
You...., wizard...., has a new worshipper. Me is, from now on, following your magic.
@SirBearingtonSupporter
@SirBearingtonSupporter 3 ай бұрын
I’m going to do my best to regularly forget to use fzf but also that last command with the open the editor was gold! But now I need to find the conf file to select the correct editor.
@CODE_IS_EVERYTHING
@CODE_IS_EVERYTHING 3 ай бұрын
Haha I'm glad to hear it. The open the editor should default to using whatever you have set in your $EDITOR env var. So if you want to set that to nvim (or whatever you want) you can do: export EDITOR=nvim If you're using zsh, you can put it in the ~/.zshrc, if bash, it would be your ~/.bashrc -- if you're using something else, it'll probably be in a similar spot.
@rodneylives
@rodneylives 3 ай бұрын
This video is great!
@jaywaup
@jaywaup 2 ай бұрын
Glad this came up on my feed. Shoutout algorithm
@nickchauhan
@nickchauhan 3 ай бұрын
Wow that was great tutorial👌
@FlyingPenguino
@FlyingPenguino 3 ай бұрын
This is some good stuff here...
@aquadap219
@aquadap219 3 ай бұрын
Wow, what a great video.
@somniasum
@somniasum 2 ай бұрын
this was so helpful
@lazut273
@lazut273 3 ай бұрын
need more practical helps with command line , this is awesome thanks
@anonymoususer13666
@anonymoususer13666 24 күн бұрын
HOLY HELL THIS VIDEO IS AMAZING
@ematherev
@ematherev 29 күн бұрын
I don't usually comment but this deserves it! Amazing video 🙌
@DevSrijit
@DevSrijit 3 ай бұрын
I just found this channel! Its amazing ! I loved tue video, awesome production quality. I hope it reaches the targeted audience.
@ziaahmad8738
@ziaahmad8738 3 ай бұрын
This is a very good video. good work.
@wrathofainz
@wrathofainz 3 ай бұрын
I remember my first bad rm -rf. I had a path not in quotes _with a space in it._ I ended up deleting waaaaay more than i wanted to. I've also had to use curl piped to gz to something else to get text output from a post request. Very neat. Damn boi, you got some _pipes_ on you 🥁
@wrathofainz
@wrathofainz 3 ай бұрын
fzf piping is op but I can't get it to work with cd
@oblivion_2852
@oblivion_2852 21 күн бұрын
An alternative to that funky kubectl command would be using k9s. A dog themed terminal controller for kubernetes
@mishrasidhant
@mishrasidhant 2 ай бұрын
Loved it🔥
@dwolrdcojp
@dwolrdcojp 3 ай бұрын
Beautiful
@josephbolton8092
@josephbolton8092 2 ай бұрын
loved this video
@chbrules
@chbrules 3 ай бұрын
I'm an RHCSA and RHCE. This was a fantastic video. While I'm familiar with about 90% of this, there was definitely new things to learn! "fzf" is a new one for me, and it looks to be extremely powerful! I really need an excuse to practice using it more often. I work on so many systems that creating aliases is not useful for me. Plus, I'd rather be able to know how it's done rather than do it once and alias it away. I can't say I've ever used awk in all my years doing Linux admin work, but I do think I copied and pasted a big chain of piped commands with it in it before lol. #vim4life
@samuelwaller4924
@samuelwaller4924 3 ай бұрын
if you think awk is confusing, you just haven't taken the time to learn it. It is an incredibly simple language that looks a lot like javascript. Literally just like like 15 minutes to read the documentation for gawk (in a browser, its just easier) and you will never be confused again
@CODE_IS_EVERYTHING
@CODE_IS_EVERYTHING 3 ай бұрын
That is a fair assessment 😅 I’ll have to give it a read
@samuelwaller4924
@samuelwaller4924 3 ай бұрын
@@CODE_IS_EVERYTHING lol thanks for being nice about it, I was a little rude. Great video!
@CODE_IS_EVERYTHING
@CODE_IS_EVERYTHING 3 ай бұрын
No worries, I didn’t take it that way. I appreciate the heads up. I use it often enough there is really no good reason to not spend a few minutes to actually learn it haha
@Snollygoster-
@Snollygoster- 3 ай бұрын
To be fair, it's not that awk is that confusing. It's more like when you're initially learning all this stuff as shell utilities and then BAM out comes a fucking scripting language. One of these things is not like the other.
@samuelwaller4924
@samuelwaller4924 3 ай бұрын
@@Snollygoster- yeah that is pretty accurate lol
@kaizer.dragon
@kaizer.dragon 3 ай бұрын
I just know bro is gonna get a hit with the algo at some point and up in niche tech recommends
@user-bi3du7or6e
@user-bi3du7or6e 3 ай бұрын
I always wanted make a video like this Thanks for making it ( i can now peacfully sleep knowing that there exist a sensible video about shells and i dont have to procastinate about making one) Even tho i know all the stuff (except fzf preview one) i still enjoyed the video
@CODE_IS_EVERYTHING
@CODE_IS_EVERYTHING 3 ай бұрын
Haha thanks, I appreciate it!
@sammy709
@sammy709 3 ай бұрын
Have been using linux for a few things for like 5 years, and just only now realized man stands for manual
@languagemodeler
@languagemodeler 3 ай бұрын
Excellent
@Ky-vv8nj
@Ky-vv8nj 3 ай бұрын
I am a Bash Wizard. It was the first language ive learned. (Even before English).
Become a bash scripting pro - full course
36:00
CODE IS EVERYTHING
Рет қаралды 35 М.
Linux File System/Structure Explained!
15:59
DorianDotSlash
Рет қаралды 3,9 МЛН
Kitten has a slime in her diaper?! 🙀 #cat #kitten #cute
00:28
ШЕЛБИЛАР | bayGUYS
24:45
bayGUYS
Рет қаралды 668 М.
Glow Stick Secret 😱 #shorts
00:37
Mr DegrEE
Рет қаралды 133 МЛН
Тяжелые будни жены
00:46
К-Media
Рет қаралды 3,1 МЛН
How SSH Works
8:54
Mental Outlaw
Рет қаралды 459 М.
Never install locally
5:45
Coderized
Рет қаралды 1,6 МЛН
C# payload mastery 01 - simple C# shellcode loader
22:05
faan ross
Рет қаралды 1,1 М.
This Zsh config is perhaps my favorite one yet.
17:24
Dreams of Autonomy
Рет қаралды 81 М.
Linux like original Unix
44:55
FreeDOS
Рет қаралды 299 М.
Git Tutorial For Dummies
19:25
Nick White
Рет қаралды 973 М.
How principled coders outperform the competition
11:11
Coderized
Рет қаралды 1,5 МЛН
I'm a Mess, so I'm Making My Own File Organizer [TagStudio]
23:32
Solving the Dotfiles Problem (And Learning Bash)
8:22
Bartek Spitza
Рет қаралды 83 М.
7 Amazing CLI Tools You Need To Try
18:10
Josean Martinez
Рет қаралды 164 М.
How about that uh?😎 #sneakers #airpods
0:13
Side Sphere
Рет қаралды 10 МЛН
Пленка или защитное стекло: что лучше?
0:52
Слава 100пудово!
Рет қаралды 2 МЛН
Carregando telefone com carregador cortado
1:01
Andcarli
Рет қаралды 1,2 МЛН