Learning Awk Is Essential For Linux Users

  Рет қаралды 285,358

DistroTube

DistroTube

3 жыл бұрын

One of my favorite command line utilities is "awk" which is a text-processing program. It is mostly used for pattern scanning and processing. In this video, I will give examples of some of the basic awk commands, and show you some of the ways that I often use awk.
REFERENCED:
► www.gnu.org/software/gawk/man... - GNU Awk
WANT TO SUPPORT THE CHANNEL?
💰 Patreon: / distrotube
💳 Paypal: www.paypal.com/cgi-bin/webscr...
🛍️ Amazon: amzn.to/2RotFFi
👕 Teespring: teespring.com/stores/distrotube
DONATE CRYPTO:
💰 Bitcoin: 1Mp6ebz5bNcjNFW7XWHVht36SkiLoxPKoX
🐶 Dogecoin: D5fpRD1JRoBFPDXSBocRTp8W9uKzfwLFAu
📕 LBC: bMfA2c3zmcLxPCpyPcrykLvMhZ7A5mQuhJ
SOCIAL PLATFORMS:
🗨️ Mastodon: distrotoot.com/@derek
👫 Reddit: / distrotube
📽️ LBRY/Odysee: odysee.com/$/invite/@DistroTu...
DT ON THE WEB:
🕸️ Website: distrotube.com/
🐿️ Gemini Capsule: gemini://distro.tube
📁 GitLab: gitlab.com/dwt1
FREE AND OPEN SOURCE SOFTWARE THAT I USE:
🌐 Brave Browser - brave.com/dis872
📽️ Open Broadcaster Software: obsproject.com/
🎬 Kdenlive: kdenlive.org
🎨 GIMP: www.gimp.org/
🎵 Audacity: www.audacityteam.org/
💻 VirtualBox: www.virtualbox.org/
🗒️ Doom Emacs: github.com/hlissner/doom-emacs
Your support is very much appreciated. Thanks, guys!

Пікірлер: 417
@TecnocraciaLTDA
@TecnocraciaLTDA 3 жыл бұрын
AWK is not just a text processing utility, awk is a complete programming language!!
@TheSulross
@TheSulross 3 жыл бұрын
yes, remove Perl, Python, and Node JS (notice no mention of Ruby - ah how far they do fall) - awk and bash is all you need
@ziggyspaz
@ziggyspaz 3 жыл бұрын
@@TheSulross you need Perl to keep your sanity, you can remove the rest
@gordongoodman8342
@gordongoodman8342 3 жыл бұрын
Calm down. It's not that exciting.
@TecnocraciaLTDA
@TecnocraciaLTDA 3 жыл бұрын
@@gordongoodman8342 it is, a lot!
@tekvax01
@tekvax01 3 жыл бұрын
yup! I was going to comment the same thing. you could even use it as your shell.
@erics7004
@erics7004 3 жыл бұрын
DT: AWK is important for linux users Luke Smith 1 hour later: Why AWK is useless for linux users
@charlessmith5465
@charlessmith5465 3 жыл бұрын
_Awk is the predictable result of misguided Enlightenment philosophies._ 🤭
@PS3PCDJ
@PS3PCDJ 3 жыл бұрын
Brodie 2 hours later: Boomers fighting over usefulness of linux utilities
@TarebossT
@TarebossT 3 жыл бұрын
_Why learning awk when you can learn grep_
@blogattacker
@blogattacker 3 жыл бұрын
Luke Smith 1 hour later: "You can replace Awk with Emacs" 10hs later: "You can replace your wife with Emacs"
@elderberry-hamster
@elderberry-hamster 3 жыл бұрын
@@blogattacker 10.5 hours later...I did. 😂
@SPSHOfficial
@SPSHOfficial 2 жыл бұрын
At 8min, when you pipe uniq, note that 'uniq' does not detect repeated lines unless they are adjacent. You may want to sort the input first, or use 'sort -u' without 'uniq'. so it would be | sort | uniq OR | sort -u
@fabrice9848
@fabrice9848 Жыл бұрын
indeed
@joedunder4439
@joedunder4439 Жыл бұрын
quite
@BrendoIsGaming
@BrendoIsGaming 2 ай бұрын
rather
@OscarFURIOUS
@OscarFURIOUS 3 жыл бұрын
I just came to say that I can see that you listened to the comments and now you are sharing your knowledge on simple but technical stuff that's really helpfull. I apreciate that and also can feel that effort
@JosephSaintClair
@JosephSaintClair 3 жыл бұрын
awk is a must. So powerful. Btw. You actually did just square. Not square root :)
@itsalivevideo
@itsalivevideo Жыл бұрын
Could have done the square root of i*i is i
@baruchben-david4196
@baruchben-david4196 Жыл бұрын
I tried it with sqrt(i) and that worked. I kind of wonder how much math you can do with awk... Yes, exp(var), log(var), cos(var), sin(var) - but not tan(var); var**x gave exponent, as did var^x. Lots of different functions...
@sachindeshpande1
@sachindeshpande1 Жыл бұрын
I have poorest knowledge of maths but I paused and rushed to comment section to check I am not wrong. But tutorial is very good.
@ecavero1
@ecavero1 3 жыл бұрын
In the square root example, very time DT said square root, he means square! Great video, DT!
@antoninperonnet6138
@antoninperonnet6138 3 жыл бұрын
Just swap the 2 fields and pretend you didn't see that: "10 is the square root of 100" is a completely valid statement 😃
@ecavero1
@ecavero1 3 жыл бұрын
@@antoninperonnet6138 I could do that! 😉
@KeithPeters
@KeithPeters 3 жыл бұрын
It's AWK math
@pleaseenteraname1215
@pleaseenteraname1215 2 жыл бұрын
@@KeithPeters 🤣🤣🤣🤣
@BrutusHiatus
@BrutusHiatus Жыл бұрын
This is a great tutorial about awk. I've learned quite a bit. The only thing that red flagged me was that NONE of those were square roots. They were squares.
@edwardonsax9919
@edwardonsax9919 11 ай бұрын
I just posted this same thing, before seeing you posted it.
@danieldevito414
@danieldevito414 7 ай бұрын
He just got the order backwards. "The square root of i*i is i". Anyone could have made that mistake.
@jeffcauhape6880
@jeffcauhape6880 3 жыл бұрын
That is the most clear demonstration of AWK I have ever seen. Amazing.
@intrepidca80
@intrepidca80 3 жыл бұрын
14:00 - /^[b,c]/ matches anything that begins with a "b" or a "c" *or a comma*.
@Joe3D
@Joe3D 3 жыл бұрын
neat
@InfiniteQuest86
@InfiniteQuest86 3 жыл бұрын
So true.
@emeraldmasta7752
@emeraldmasta7752 2 жыл бұрын
Regex yeet
@driden1987
@driden1987 3 жыл бұрын
Had to process a 120k line csv at work the other day. Awk was a god send
@milo_andrs
@milo_andrs 2 жыл бұрын
Nice, thank you. I am beginning my journey on bash and this is awesome.
@tarekrahman1
@tarekrahman1 3 жыл бұрын
Glad you made this video. I was stumbling upon awk in everywhere and wanted to learn it but didn't have time to do so. Thanks
@VexisMorlock
@VexisMorlock 3 жыл бұрын
Great TUT. I ran into an issue because I don't use uniq and sort often enough; uniq doesn't work if dupes are not adjacent so you need to sort first.
@KeepItTechie
@KeepItTechie 3 жыл бұрын
Great tutorial DT! AWK is very powerful!
@DistroTube
@DistroTube 3 жыл бұрын
Thanks, Josh!
@KeepItTechie
@KeepItTechie 3 жыл бұрын
@Earthling-Z3R0 Thanks man. You're right.
@psadi_
@psadi_ 3 жыл бұрын
I bet someone is already rewriting awk in rust for the memes.
@alessandroferrari4699
@alessandroferrari4699 3 жыл бұрын
you mean for speed and safety? /s
@rishirajsaikia1323
@rishirajsaikia1323 3 жыл бұрын
@@alessandroferrari4699 people use rust because it's fast and easier to solve errors and even rivals c in speed while being easier.
@TheSulross
@TheSulross 3 жыл бұрын
yes because obviously all these 40 year old Unix tools are buggy and broken after thousands upon thousands of users applying them daily over many decades
@cgme7076
@cgme7076 3 жыл бұрын
@@TheSulross exactly 😂😂
@arnoaldloukasscirpionis1558
@arnoaldloukasscirpionis1558 8 сағат бұрын
Well. People have already rewritten it in languages much less speedy than Rust - Go and even Common LISP. Knowing this, rewriting it in Rust is a much better idea !
@gwgux
@gwgux 2 жыл бұрын
This is one of the best explanations of awk I've seen! I'll save this one for some people I know that are still just learning Linux.
@4lc0h0l
@4lc0h0l 3 жыл бұрын
This is great, this video arrived just in time since currently I am on problem automating a lot of stuff with bash scripting and using awk for text-processing. Thanks for the content!
@OpusFocus1968
@OpusFocus1968 Жыл бұрын
Thank you Derek I appreciate the time and effort you put into making these videos. You help us "middle users" take things up a notch. Middle as in we are no longer beginners but won't ever be sysadmins. We do however want more out of their Linux system.
@rochakgupta6116
@rochakgupta6116 Жыл бұрын
DT, you are amazing man. Yours are the only videos I have been watching on a daily basis. Thanks for sharing all the knowledge!
@RobertGuilman
@RobertGuilman 2 жыл бұрын
Sir, your a wizard with awk, i only knew half of this 😂
@pnavais
@pnavais 3 жыл бұрын
Straight to the point & excellent as always. Keep up the good work DT ! 👏
@DaveRogersEsq
@DaveRogersEsq Жыл бұрын
Needed a quick refresher on awk as I had no used it in years. This was a great video, covering the essentials. Cheers.
@ourallabrador4023
@ourallabrador4023 Жыл бұрын
I have been using linux for years living on a few commands. I had only a faint knowledge of the command/programs such as awk or sed. Mainly because I had no ideas of their capabilities and use cases. Now I can see how useful they can be. I usually recommend your channel to my PhD students and observed a real improvement in their computer skills. IMO your channel is vital for linux wannabe and "familiar but not expert" users. So thank for your work.
@ghodawalamoamanzahirabbas8996
@ghodawalamoamanzahirabbas8996 Жыл бұрын
He also inspires me to learn about this powerful utilities.
@skirnir393
@skirnir393 2 жыл бұрын
Good introduction to awk. Back in 2013 i had to parse huge log files that had no field separator, even worst each line could be completely different depending on certain conditions. Awk saved my life.
@fabrice9848
@fabrice9848 Жыл бұрын
The simple fact that fish is your default shell deserves a like and a subscription.
@h0ck3y66
@h0ck3y66 3 ай бұрын
I love you man, you're the only one who was able to explain awk in a simple yet effective way. I finally understand how awk works!
@davidruedeman9990
@davidruedeman9990 2 жыл бұрын
Learned more about awk in 20 minutes than in the previous 40 years
@fargoflagrant7796
@fargoflagrant7796 2 жыл бұрын
This is really helpful and practical, thank you DT!
@abarocio80
@abarocio80 3 жыл бұрын
Good video. Some of these, I didn't knew. An error in the video: it wasn't the "square root", but just the "square", or "power of two". The square root of 4 is 2, the square root of 9 is 3, the square root of 25 is 5, and so on.
@christopherdavies7403
@christopherdavies7403 3 жыл бұрын
i came to the comments expecting every comment to be this. I am highly disappointed in the YT comments shit posting today.
@gordonbai5320
@gordonbai5320 3 жыл бұрын
@@christopherdavies7403 And this guy says 'I didn't knew', grammar mistake.
@charlieoocharlie9466
@charlieoocharlie9466 2 жыл бұрын
@@gordonbai5320 ok boomer
@weege5.45
@weege5.45 Жыл бұрын
@@charlieoocharlie9466 FLAME WAR! And you live in your mother's basement.
@Hexalyse
@Hexalyse 3 жыл бұрын
awk is awesome, but if you just want the number of lines, using wc is less characters to type :)
@TheSulross
@TheSulross 3 жыл бұрын
yeah, that was one example that did not resonate at all because wc will also provide totals when applied against multiple files - much less to type to just use wc
@egor.okhterov
@egor.okhterov 2 жыл бұрын
The point is to show what you can do with awk =)
@zainjadoon759
@zainjadoon759 3 жыл бұрын
I have been putting this off for a long time thanks for encouraging me to finally learn it.
@jeffg4686
@jeffg4686 3 жыл бұрын
Thanks for the share. I used use text editors like Textpad to do these things with regex, but this is so much better since not just find/replace, but perform operations on each result, and being able to easy have in a shell pipeline of commands. Always too lazy to learn it for some reason, but now I'm motivated.
@mrdanymotion1903
@mrdanymotion1903 3 жыл бұрын
Hell yeah!!! AWK arrived at the right time!! Thank you Derek!
@JoshBenore
@JoshBenore 2 жыл бұрын
I have always had trouble with awk because of all the syntax involved, this helped sooo much. When you pressed enter on the square root part then said that the output was correct, this is the task list I had to perform to get back on track: 1. Facepalm 2. Pull fire alarm 3. Crying session 4. Shower with clothes on 5. Call Mom 6. Eat some sweets 7. Finish the video
@wowgingermobile2123
@wowgingermobile2123 Жыл бұрын
This is truly amazing, hope to have another new Awk video in the furure!
@TheBlueThird
@TheBlueThird 3 жыл бұрын
DT, this is an excellent video! Thanks!
@baruchben-david4196
@baruchben-david4196 Жыл бұрын
Thanks for this video. It helps me understand how to use awk better.
@bradleyeverson697
@bradleyeverson697 3 жыл бұрын
Hey DT. Great review of the power of "awk". You cover all the basic functions for a new user. I use "awk" in a shell script to sort through my datalog's results that i need. Then dump it to a csv file.
@rickbhattacharya2334
@rickbhattacharya2334 3 жыл бұрын
Thank you professor DT for the lecture .
@balochcode
@balochcode Жыл бұрын
Excellent presentation!! to the point and straight forward! great job!
@Desi-qw9fc
@Desi-qw9fc Жыл бұрын
Great video. An accessibility note: Your console’s active line is at the very bottom of the screen, which is where KZbin on Smart TVs puts the subtitles, so the subs block the thing you’re typing. It would be better if your terminal was sized so that the bottom 10-20% of the screen isn’t used.
@name1355_0ne
@name1355_0ne 2 жыл бұрын
Very nice introduction to awk features. Thanks for sharing this useful knowledge!
@jacksystems
@jacksystems 3 жыл бұрын
Very useful info DT! I only knew how to print columns in awk.
@keebler6591
@keebler6591 3 жыл бұрын
Great video DT! Thanks for the awesome awk tutorial Except: s/square\ root/square 😀
@dragonsage6909
@dragonsage6909 2 жыл бұрын
That was some awesome awk-fu bro, thank you!
@addaline9645
@addaline9645 Жыл бұрын
I learned so much more here in 20 mins then I did in my last two classes about this
@Jerry-fy2gc
@Jerry-fy2gc 2 жыл бұрын
Thanks buddy for such clear explanations. Now I'm comfortable to start write some crazy scripts.
@Lucas-md8gg
@Lucas-md8gg 3 жыл бұрын
My payment will be available in 2 weeks, then I'll be a patreon. Your content is amazing.
@vn1384
@vn1384 Жыл бұрын
This is a great video on AWk..thanks
@zeppelinmexicano
@zeppelinmexicano 4 ай бұрын
This is a great review of some practical usages.
@al1234
@al1234 3 жыл бұрын
This is the kind of stuff I love to watch
@elad3958
@elad3958 Жыл бұрын
Great tutorial. I learned more in 20 mins w/ awk then in 7 years in IT.
@datturns9947
@datturns9947 Жыл бұрын
What did you do then in 7 years of IT? :))
@eritert
@eritert 3 жыл бұрын
Awk is awesome, great vid I learned a lot
@kirk0831
@kirk0831 2 жыл бұрын
Thank you for doing this video. Very helpful.
@davidgomez79
@davidgomez79 3 жыл бұрын
Great vid DT!
@anthienvo
@anthienvo 2 жыл бұрын
Heaviest 20 minutes in my life. Worth it
@ismoiljonabdumajidov9260
@ismoiljonabdumajidov9260 Жыл бұрын
i really appreciate your effort , thank you for the great lesson MAESTRO .
@rogernevez5187
@rogernevez5187 2 жыл бұрын
Awk ... very meaningful name !!! Looks like an assembly instruction.
@drzmuhammed
@drzmuhammed Жыл бұрын
This was helpful, thank you 😊
@amanchauhan4356
@amanchauhan4356 2 жыл бұрын
This was helpful…. Thanks to u and ur team
@elderberry-hamster
@elderberry-hamster 3 жыл бұрын
Great tutorial! I do prefer the WTF command. It covers all my confusion when trying to navigate the command line. 😜
@Soupie62
@Soupie62 3 жыл бұрын
A little bit of Awk can be useful. My standard example: I have a list of shares I track. The website I use lets me download data, but holds more data (open, close, max, min,volume ) than I want. Awk is perfect for filtering a single column (close values).
@korleone72
@korleone72 Жыл бұрын
that is a very cool podcast, very useful. thank you
@umop3plsdn
@umop3plsdn 3 жыл бұрын
love both Sed and Awk
@dumitrus.6925
@dumitrus.6925 2 жыл бұрын
I enjoyed your presentation on awk and I subscribed to this channel. I have a question: Can awk to the following job -- send the first line of a file1, delimited by default space, to another file2, file2 that would take its name from the first few fields of the line 1 just transferred from the file1? Thank you
@c434rdd410
@c434rdd410 2 жыл бұрын
thanks awk command that help me a lot in my project after watching this video ^_^
@bitti1975
@bitti1975 2 жыл бұрын
The problem with awk is that most people know it but all seem to think its whole purpose is just to extract columns. This Video gives many practical example that it's so much more.
@seansretroverse9082
@seansretroverse9082 2 жыл бұрын
Nice Luther insult at 8:20! I for real laughed out loud on that one. I'm surprised no one called that out in another comment...😁
@christianalvarez8606
@christianalvarez8606 3 жыл бұрын
Your audio sound 1000x better then before
@user-ug4gy4bn1p
@user-ug4gy4bn1p 8 ай бұрын
Great video, helpful comments and even better resourceful and corrective people in the comments
@mehdimahdavi6619
@mehdimahdavi6619 Жыл бұрын
Hi, thx for ur great videos reagarding Linux! I have a question: r u still using trackballs?
@Winnetou17
@Winnetou17 3 жыл бұрын
I think a very good example of how good & useful is awk is the example of a log like the apache access log (in the default format) and properly filter the requests that responded with a 400 or 503 response, given that you can find 400 and 503 in the request address, or in the size or the time it took to complete. Also to filter all requests that are longer than a second for example and many other things like that. It's basically Excel powers in CLI over column-structured data/files (which are common in commands outputs or log files)
@calvinproject
@calvinproject 3 жыл бұрын
Amazing! Basically I can programming using awk. Thanks
@DistroTube
@DistroTube 3 жыл бұрын
Yea, you can actually use "awk" as a scripting language. Might have been useful in past decades. But now, I'm not sure why anyone would script with awk when things like bash and python exist.
@raushonmunni2633
@raushonmunni2633 3 жыл бұрын
@@DistroTube maybe awk faster than python and more specific programming language bash or posix shell
@sureshsurendran737
@sureshsurendran737 11 ай бұрын
Awsome presentation 👍
@ToallpointsWest
@ToallpointsWest Жыл бұрын
USEFUL!! Thank you!
@akya
@akya 2 жыл бұрын
Never needed awk in last 6-8 years or so... but thanks!
@ghdbdeeeeeaqqq
@ghdbdeeeeeaqqq 2 жыл бұрын
Excellent, thank you very much!
@senthil_the_analyst
@senthil_the_analyst 2 жыл бұрын
Quality content 💯
@Learnerofthings
@Learnerofthings 2 жыл бұрын
Great channel, great information.
@chang112x
@chang112x 2 жыл бұрын
Very Powerfull. Thx for the video.
@SeekerOfSouls
@SeekerOfSouls 3 жыл бұрын
Awesome... good to know how versitile awk is.
@vkg2958
@vkg2958 2 жыл бұрын
Good Morning Sir, I just wanted to know which Distro and terminal you're using here?.. it's so dope! 🔥 Also that fun message after entering wrong syntax LOL that's where I lost it..
@adriancostin9138
@adriancostin9138 3 жыл бұрын
i always found it easy to use because i'm AWKward.
@AWriterWandering
@AWriterWandering 2 ай бұрын
I really need to push myself to use awk more. A lot of this can be done by just combining grep, sed, and cut, but it’s kinda nice having it in one process.
@necronlord52
@necronlord52 2 жыл бұрын
As I found out, you have to sort _before_ running the _uniq_ , otherwise it wouldn't work.
@flesz__
@flesz__ 2 жыл бұрын
Thanks! What mic are you using? Also 7:40 , you could use awk -F "/" '{print $NF}' /etc/shells for the same result Your df command gives output equivalent to df -h , I suppose you configured an alias?
@aldeezy1
@aldeezy1 3 жыл бұрын
small suggestion, bring the bottom of your terminal window up a bit so the youtube progress bar doesn't cover up the command you're entering when the video is paused. Thank you for making this!
@warhawk_yt
@warhawk_yt 3 жыл бұрын
I know in most window managers you can change the size of a window from left or right but not on the top or bottom at least from what I have seen unless you are in floating mode than you can change it to any size. Most of the space around each window is configured hard coded in your window manager config. You could change it but than would have to change it back after a video.
@aldeezy1
@aldeezy1 2 жыл бұрын
@@warhawk_yt clearly he just needs to increase the edge padding to something crazy like 48-64 pixels for the [ M A X I M U M R I C E ]
@Merigold83
@Merigold83 3 жыл бұрын
Your example for the line count can be reproduced with the command "wc -l /foo/bar/file_a /foo/bar/file_b"
@magefreak9356
@magefreak9356 3 жыл бұрын
Always great content DT! Is there a way around the case where the field separator is inside the entries? Like the ps -ef command output has spaces inside the content as well as spaces being the field separator.
@locatemarbles
@locatemarbles 3 жыл бұрын
I'm sure there is an awky way to do it, but in this case i would be lazy and choose sed.
@TheJacov
@TheJacov 2 жыл бұрын
Yup, awk is cool. Just as an aside that was squares, not square roots. For square roosts you would need something like (n^(1/2)). AWK does have ^ which is raise to the power function. Raising a number to a fractional power is taking the root.
@rolcarislew7761
@rolcarislew7761 2 жыл бұрын
Yup, it's a complete language, as it is taught in CS degree courses (when taught). However this guy, otherwise, is a far more interesting teacher. Thanks, DT! This app/language confusion here is, like with Python, there is the language, AND there is ERIC, a free IDE that comes with Python. ERIC executes Python, but it's NOT Python. The AWK IDE is more invisible, but there. You can write independently, then execute.
@braelinmichelus
@braelinmichelus 3 жыл бұрын
A couple months ago I wrote a little shell script to gather system information such as CPU model, memory, computer model, shell, WM (using lscpu, dmidecode, etc) and I had to learn a little bit of Awk, Sed, and Grep to clean it up and make it look pretty. This video would have came in handy back then, instead of spending 30 minutes reading StackExchange articles on them!
@ghodawalamoamanzahirabbas8996
@ghodawalamoamanzahirabbas8996 Жыл бұрын
Could you share your script? I would like to use it!
@hendrikbonthuys9190
@hendrikbonthuys9190 3 жыл бұрын
Useful video thanks 🙏
@AkashAgrawal03
@AkashAgrawal03 3 жыл бұрын
Thanks for making this video! I've tried a couple of times to add AWK to my arsenal, but gave up halfway. This has inspired me to give it a more serious go. I'm generally pretty comfortable with grep and sed but looks like I can make this work for replacing those two for many use cases.
@pasej5
@pasej5 10 ай бұрын
like you said i should have learned this earlier. Good tutorial..
@DavonAllen92
@DavonAllen92 3 жыл бұрын
David Draiman loves this program.
@trido3815
@trido3815 2 жыл бұрын
Thanks for sharing.
@jacksongodsey
@jacksongodsey 3 жыл бұрын
This couldn't have come at a better time! I was seeing this command everyone in people's dwm configs and had no clue what it is.
@janekmachnicki2593
@janekmachnicki2593 Күн бұрын
My favorite tutor
@zur4203
@zur4203 Жыл бұрын
hey DT! i like your videos. they're very informative. now this is an older video and maybe you fixed it but when you have the terminal on thescreen the youtube navigation bar is covering the field and it is hard when pausing to see the commands.
The Beginner's Guide To SSH
20:10
DistroTube
Рет қаралды 53 М.
Learning Sed Is Beneficial For Linux Users
19:27
DistroTube
Рет қаралды 80 М.
WHY IS A CAR MORE EXPENSIVE THAN A GIRL?
00:37
Levsob
Рет қаралды 21 МЛН
When Steve And His Dog Don'T Give Away To Each Other 😂️
00:21
BigSchool
Рет қаралды 17 МЛН
New Gadgets! Bycycle 4.0 🚲 #shorts
00:14
BongBee Family
Рет қаралды 17 МЛН
EVERYONE Needs to Learn a Little Bit of AWK!
16:29
Gary Explains
Рет қаралды 395 М.
18 Commands That Will Change The Way You Use Linux Forever
29:50
Akamai Developer
Рет қаралды 1,2 МЛН
Linux Crash Course - awk
16:07
Learn Linux TV
Рет қаралды 90 М.
How The 'awk' Command Made Me A 10x Engineer
10:40
RobertElderSoftware
Рет қаралды 167 М.
Awk Crash Course
40:38
Earthly
Рет қаралды 9 М.
The 12 Linux Apps Everyone Should Know About
21:20
DistroTube
Рет қаралды 447 М.
Основы терминала | GNU awk
23:20
Славная академия
Рет қаралды 3 М.
Every Weird Math Paradox
11:15
ThoughtThrill
Рет қаралды 9 М.
Linux Crash Course - The sed Command
15:25
Learn Linux TV
Рет қаралды 115 М.
AI от Apple - ОБЪЯСНЯЕМ
24:19
Droider
Рет қаралды 111 М.
keren sih #iphone #apple
0:16
Muhammad Arsyad
Рет қаралды 1,6 МЛН
Mem VPN - в Apple Store
0:30
AndroHack
Рет қаралды 95 М.
WWDC 2024 - June 10 | Apple
1:43:37
Apple
Рет қаралды 10 МЛН