Тёмный

Linux Crash Course - The find command 

Learn Linux TV
Подписаться 757 тыс.
Просмотров 86 тыс.
50% 1

In this episode of Linux Crash Course, I'll teach you the basics of the find command. The find command is a powerful command-line tool you can use in order to find just about anything in the filesystem, and with this video, you'll learn all the basics you need in order to start using it.
LearnLinuxTV Links
🐧 Main site:
➡️ www.learnlinux.tv
🐧 LearnLinuxTV Community:
➡️ community.lear...
Support LearnLinuxTV (commission earned)
📖 Check out Jay's latest book, Mastering Ubuntu Server 4th Edition. Covers Ubuntu 22.04!
➡️ ubuntuserverbo...
🙌 Support me on Patreon and get early access to new content!
➡️ learnlinux.lin...
☁️ Get $100 toward your own cloud server with Linode!
➡️ linode.com/lear...
🛒 Affiliate store for Linux compatible hardware/accessories (commission earned):
➡️ learnlinux.lin...
💻 Check out the Tiny Pilot KVM for your Homelab (commission earned):
➡️ learnlinux.lin...
About Me
🐦 Follow me on Twitter!
➡️ learnlinux.lin...
👨 More about me:
➡️ www.jaylacroix...
➡️ www.learnlinux...
Recommended evergreen videos:
💽 How to create a bootable flash drive for installing Linux
➡️ linux.video/fl...
🐧 OpenSSH Guide
➡️ linux.video/ssh
📖 LVM Deep-dive:
➡️ linux.video/lvm
🔐 How to better secure OpenSSH:
➡️ linux.video/se...
☁️ How to create a cloud Linux server with Linode:
➡️ learnlinux.lin...
📘 FAQ
• What is a "Distribution" of Linux? ➜ linux.video/wh...
• What is a "Desktop Environment"? ➜ linux.video/de...
• Which Linux Distro should I use on my Server? ➜ linux.video/wh...
• How do I create USB install media? ➜ linux.video/in...
• How do I create multi-boot USB media? ➜ linux.video/ve...
• How do I connect to a Linux server via SSH? ➜ linux.video/us...
• How do I exit vim? ➜ linux.video/vim
• How do I use APT? ➜ linux.video/apt
• How do I use DNF? ➜ linux.video/dnf
• How do I use pacman? ➜ linux.video/pa...
• How do I use zypper? ➜ linux.video/zy...
• What the heck is a "Flatpak"? ➜ linux.video/fl...
• What is a "Snap" package? ➜ linux.video/snap
• How do I install Arch Linux? ➜ linux.video/in...
• How do I configure SSH on my server? linux.video/ss...
• How do I install updates? ➜ linux.video/up...
• What server tweaks should I implement? ➜ linux.video/ev...
• How do I use LVM? ➜ linux.video/lvm
• How do I use Git? ➜ linux.video/git
• When will the "Year of the Linux Desktop" Happen? ➜ linux.video/yotld
• Do you have a sense of humor? ➜ linux.video/lol
#LearnLinuxTV #Linux #LinuxTutorial

Наука

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

 

28 сен 2024

Поделиться:

Ссылка:

Скачать:

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

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 132   
@박성현-l1h
@박성현-l1h Год назад
That was the most passionate "I'm really excited to tell you about it" I've ever heard in my life 0:52
@blakebenner1723
@blakebenner1723 Год назад
There is a lot to unpack in 'man find'. Thank you for your service!
@leythecg
@leythecg 2 года назад
This series is the best I've found regarding Linux! Thank you so much for that!
@unbekannter_Nutzer
@unbekannter_Nutzer 2 года назад
First example: If you omit the starting path, the $PWD is used, so you not even have to type the dot. `find -name *.txt` did only work incidentally, because without masking, the shell will do file name expansion, so if you happen to have one or more files matching the *.txt pattern in your current directory, the find command will see the list of expanded files. `find -name "*.txt"` instead is the thing to do, except you're sure, that there is no file matching your pattern in the current dir. Same problem in min. 21 while searching for *.log and 24 when searching for *.mp3. Min. 9: `find -delete instead of -exec rm {} +` is superior and present in GNUs find for ages. It is able to remove empty directories as well and is much better to type. Since find has so many options, you can talk about them for hours. I guess one of the most important options is searching for age with -mtime. I often know that I search for a file which is maybe 3 to 8 weeks old and it might be a Java file and I'm searching for, let's say, my usage of a JTable. `find -mtime +21 -mtime -56 -name "*.java" -exec grep JTable {} + -ls` If you don't pipe the output to grep, but use grep with exec, you can keep going using other find options. The ls gives a long file output, similar to `ls -l`.
@iconoclastsc2
@iconoclastsc2 10 месяцев назад
I just tried the find -delete and it deleted all the contents of the directory instead of just what it found. The man says: Warning: Don't forget that find evaluates the command line as an expression, so putting -delete first will make find try to delete everything below the starting points you specified. I don't know how I'm supposed to use this command. Fortunately I didn't lose anything important.
@unbekannter_Nutzer
@unbekannter_Nutzer 10 месяцев назад
@@iconoclastsc2 Well, for most options, the order of them doesn't matter, for example `find . -name "*.java" -mtime -3` will find the same files as `find . -mtime -3 -name "*.java`. But if you specify `-delete` in front of other criteria, those other criterias are only considered AFTER deleting, so `find . -mtime -3 -name "*.java -delete` will only delete .java-files, which are less than 3 days old, but find . -mtime -3 -delete -name "*.java` will delete all files less than 3 days old and the following resistriction with `-name "*.java"` is too late. Checking, which file might get deleted isn't trivial either, since '-delete' implies `-depth` which means the deeper files will get deleted before the less deep files, which is important for directories, which can only be deleted, if they are empty.
@zartajmajeed
@zartajmajeed 3 месяца назад
Good advice on quoting any glob patterns with -name - but I never use -delete because it is tricky and difficult to always get right - instead I use -ok rm -v {} \; or -exec rm -iv {} \; to force an interactive prompt to confirm each deletion and see what was deleted - or for a large number of files, first produce a list of matching files like he does in the video - then delete the list directly with something like xargs rm -v
@zartajmajeed
@zartajmajeed 3 месяца назад
Technically "-name", "-mtime" etc are not options to the find command - find actually has just a handful of options like "-H" and "-D" - these other terms that start with a dash are part of the find expression language - they're called "primaries" - they look like options and even act a bit like options but they're not options - think of them like little boolean functions that combine to form the complete query expression - realizing this helps with a lot of confusion around find expressions
@unbekannter_Nutzer
@unbekannter_Nutzer 3 месяца назад
@@zartajmajeed Find may use its own nomenclatura; since these options are optional, it's perfectly fine to call them options.
@dancaputa1543
@dancaputa1543 3 года назад
I can't thank you enough for all your videos. Been craming to learn linux so I can use it for a big chia farm.
@ianperkins8812
@ianperkins8812 3 года назад
Simple, but incredibly useful. Thanks!
@waltsullivan8986
@waltsullivan8986 Год назад
By not quoting `'*.txt'` you risk matching files in your current directory: 'touch {a,b}.txt;find . -name *.txt' will fail.
@mhl1740
@mhl1740 5 месяцев назад
Best explanation of find ever! Thank you!
@mahirfr
@mahirfr 3 года назад
I'm glad this channel is here... ...
@franki55
@franki55 2 года назад
Had to sift thru to the 2:22 min mark to actually start content...othewise good video
@dragonsage6909
@dragonsage6909 2 года назад
Great info, glad I was able to 'find' this :) Ty
@pitsomokhu6302
@pitsomokhu6302 2 года назад
This Such a Powerful command to automate things as a Newbie.. thank you Very much!!
@hariraghu1537
@hariraghu1537 6 месяцев назад
Good content.. Valuable lessons
@hjubris
@hjubris Год назад
Lacuna Coil rocks and you do too!
@mathewkargarzadeh3158
@mathewkargarzadeh3158 3 года назад
THANKS JAY !!!. YOU ARE GREAT. MUCH APPRECIATED !!!
@koushik7604
@koushik7604 3 года назад
Can you please make a video on using makefile for automation? It would be highly appreciated 🙂
@marcrindermann9482
@marcrindermann9482 6 месяцев назад
Thumb up for Lacuna Coil
@DarthDweeb
@DarthDweeb 3 года назад
and the oscar goes to..... I love your videos man. Keep it up.
@cheminchemin2366
@cheminchemin2366 2 года назад
nice course and nice trick 7:26
@AnzanHoshinRoshi
@AnzanHoshinRoshi 3 года назад
Thank you, Jay.
@name1355_0ne
@name1355_0ne 3 года назад
Thanks a lot for the video! Found some new bits of knowledge.
@MarkusHobelsberger
@MarkusHobelsberger 3 года назад
I have been using Linux on a desktop for 4+ years now, but I never noticed you cannot open folders which do not have the x permission. Mind blown :D
@MichaelSalo
@MichaelSalo Месяц назад
At 3:39. Why did the command accept a glob pattern without quotes here?
@marcin2x4
@marcin2x4 Год назад
Very nice music taste ;)
@harunaadoga
@harunaadoga Год назад
Thank you!
@deanwhite8413
@deanwhite8413 3 месяца назад
Thanks!
@amortalbeing
@amortalbeing Год назад
thanks a lot. this is great
@samirfighter1213
@samirfighter1213 5 месяцев назад
very helpful
@GreedoShot
@GreedoShot 4 месяца назад
video starts at 2:58
@abhimudaliar1064
@abhimudaliar1064 3 года назад
Thanks Jay !
@SlideRSB
@SlideRSB 3 года назад
Why use -exec rm? Wouldn't -delete work okay to delete the results of find?
@Hunterrr15
@Hunterrr15 Год назад
Awesome tutorial. Thank you :)
@dawnS33ker
@dawnS33ker 2 года назад
Great tutorial. Thank you sir👍
@z8669zzz
@z8669zzz 2 года назад
find the stuff I knew was somewhere!
@kentw.england2305
@kentw.england2305 2 года назад
I learned to use find | xarg but -exec is easier and better.
@unbekannter_Nutzer
@unbekannter_Nutzer 2 года назад
Yes, many people learn xargs that way, because there are few usages for xargs at all, if you know find -exec :) .
@clownpocket
@clownpocket 2 года назад
I toured with Lacuna Coil in the 2000's when they opened for a band I worked as guitar tech for (Type O Negative) and also for a short run just with them afterwards. Great music and great people. Do I get a free question? I'm trying to backup photos from my Windows drive in Linux but exclude files that have parentheses. All files containing parentheses are duplicates, for example pic(1).jpg. So I want to find pic.jpg but exclude pic(1).jpg and copy all the pic files onto a backup drive. How might I use 'find' to exclude any files with a parenthesis?
@YannMetalhead
@YannMetalhead 2 года назад
Good explanation.
@burstfireno1617
@burstfireno1617 5 месяцев назад
Hmm. How do you find a file by its name?
@sWi5s
@sWi5s 3 года назад
You should have mentionned that the * must be escaped, you're gonna confuse people.
@raghulrags
@raghulrags 3 года назад
What will hapn if not escaped??
@lessevilgoog
@lessevilgoog 3 года назад
Nice job
@tiagorsacxs1
@tiagorsacxs1 3 года назад
You are awesome ....
@pradeepkumar-ew1ze
@pradeepkumar-ew1ze 3 года назад
Does this applicable to mac terminal? I dont see the "exec" working.
@lsatenstein
@lsatenstein 3 года назад
HI Jay, Yes, I followed this "lecture" about find today, because I was hoping that you would be able to help me with a challenge. Every month, I want to copy from a tree of directories and paths, the additions that were created some 30 days ago. Ideally, I have a tree of folders /backup/2021/0101 /backup2021/0201 .... As an example, the contents of 2021/0201 should contain only the new files to backup for that month. I was considering to use find's -mtime somehow. I am not sure if that is what I need to use. I was reviewing your examples, and did not see a way to do date range exclusion/selection with find. man and info pages were not too helpful. Have you some example from one of your private utilities that you can share? After some research, I also discovered pax a similar program to find. Perhaps pax is the utility to use. Your opinion or recommendation would be preferred. Regards from Montreal Quebec Leslie
@mason8714
@mason8714 3 года назад
i get this when i do that find: paths must precede expression: `temp2.txt' find: possible unquoted pattern after predicate `-name'? What does that mean?
@NoEgg4u
@NoEgg4u 3 года назад
Run the command again, but escape the asterisk. For example: $ find /home/Mason -name \*.txt To understand why you ran into your issue, run this: $ ls -l *.txt You will see more than one match. Due to having multiple matches, those matches are applied to your "find" command line. To test what you originally ran (which gave you the error), then run it again, with the echo command: $ echo find /home/Mason -name *txt You will see that the shell replaces the *txt with all matches, and that is what screwed up the find command. Jay did not run into this problem, because he never had any matches to *.txt in his working directory. So the shell kept the asterisk intact and sent it to the find command. For example, if you were to run: $ echo find /home/Mason -name *somefile-that-is-not-here-blah-blah-blah then the above will leave the asterisk there, because the shell will not match it to any files (which is how Jay avoided getting tripped up with his examples). Note that if you have a single file that matches the *.txt criteria, then if you do not escape the asterisk, you will end up searching for only that one file. Always escape the "*" when using the find command (and lots of other commands, too). Escape the ? character, too. Cheers!
@MarkusHobelsberger
@MarkusHobelsberger 3 года назад
Noob question here: I have seen people use ` and ' in different spots of commands like you did for example with `temp2.txt'. Is there any difference to just using 'temp2.txt'?
@NoEgg4u
@NoEgg4u 3 года назад
@@MarkusHobelsberger Are you asking about the difference between the "backtick" vs. the "single quote" characters: ` ' ?
@MarkusHobelsberger
@MarkusHobelsberger 3 года назад
@@NoEgg4u Yes, exactly.
@NoEgg4u
@NoEgg4u 3 года назад
@@MarkusHobelsberger The backtick will get processes by the shell, ahead of the command you are executing. The result of whatever is between the backticks will be what gets inserted on the command line, to be executed with the rest of the command line. For example: $ echo The date and time are `date` The above will echo: The date and time are Wed Jul 28 13:00:44 EDT 2021 Single quotes are used for literal processing. Whatever is between the single quotes be be read by the shell, literally. So substitutions will take place, for whatever is between the single quotes.
@GooogleGoglee
@GooogleGoglee 3 года назад
In reality the \; and the + has a different purpose especially related to performance/efficiency. Anyone knows exactly the difference?
@deprimarvin5382
@deprimarvin5382 3 года назад
There really is a difference in how the command to be executed is build. If I got the man page right, with "\;" the given command is executed for each and every finding. If you have 5 findings, the command will be executed 5 times. With "\+" (this should be escaped as well) the command is executed only once with all the findings added to the command at the end. Therefore the "{}" must be the very last argument before "\+". So if you have 5 findings here as well, the command will be executed once with all 5 findings added as arguments. Some examples: find ~/Documents -name \*.txt -exec cat \{\} \; findings file1.txt, file2.txt, file3.txt Will result in: cat file1.txt cat file2.txt cat file3.txt find ~/Documents -name \*.txt -exec cat \{\} \+ findings file1.txt, file2.txt, file3.txt Will result in: cat file1.txt file2.txt file3.txt Another example: You want to create an archive off all your JPGs. What happens, if you use this command? find ~ -name \*.jpg -exec tar -czv pictures.tar.gz \{\} \; Well, the tar command is executed for every finding, overwriting the archive each time. In this case you should use: find ~ -name \*.jpg -exec tar -cvf pictures.tar.gz \{\} \+ Hence all the found files are given as a parameter to the tar command, resulting in a tar ball with all the files you want. I hope that makes any sense to you.
@GooogleGoglee
@GooogleGoglee 3 года назад
@@deprimarvin5382 make sense! Thank you for your time to explain it so gracefully Would be nice if the man pages would have more examples and clear explanations
@unbekannter_Nutzer
@unbekannter_Nutzer 2 года назад
@@deprimarvin5382 Mostly right, but you don''t have to mask the + and not even the curly braces. Well - maybe you don't use bash to call find, then I might be wrong, but I doubt it.
@deprimarvin5382
@deprimarvin5382 2 года назад
@@unbekannter_Nutzer you are totally right. I even do not know anymore, why I masked the curly braces.
@unbekannter_Nutzer
@unbekannter_Nutzer 2 года назад
@@deprimarvin5382 Well, the man page of find states, that you should mask them, but so far, nobody could tell me an example command, where it makes a difference, except when calling a subshell.
@DevendraKumar-cr6to
@DevendraKumar-cr6to 3 года назад
Are you using OpenSuse?
@basavarajus7590
@basavarajus7590 3 года назад
How make dual boot Linux mint cinnamon 20 to windows 10 please make me one video on this topic
@shawnlewis389
@shawnlewis389 Год назад
Hey Jay. Great video. I have been watching your videos for a while now. And I get a lot out of them. I have recently been told by the contract company that I work for that I have to get my Linux+ XK0-004. That is okay with me. I don't mind doing so. Can you recommend some study resources that will focus specifically on the exam topics?
@sybex200
@sybex200 Год назад
Comptia has retired XK0-004,the new exam is XK0-005.
@shawnlewis389
@shawnlewis389 Год назад
@@sybex200 Thanks. I was tracking that. However my company specifically asked for 004, so...I got it. Locked it up about 2 weeks before expiration.
@DaveSomething
@DaveSomething 3 года назад
find ~ -name **derp** (edit: had to add extra asterisks, it bolded) or locate derp same results, for me anyway. any differences?
@DaveSomething
@DaveSomething 3 года назад
just as a quick locator, find does have its uses though, it's got a lot of extras
@fordthink
@fordthink 3 года назад
Instead of displaying the file path for each of my results (from a find command), suppose I want just the file names. What command should I attach with to my find command?
@deprimarvin5382
@deprimarvin5382 3 года назад
You can use "basename" find ~ -name \*.jpg -exec basename \{\} \; You have to terminate the command with "\;" so that the command is executed for every finding. If you use "\+" as a terminator, the command will throw an error: "basename: extra operand" So choose the terminators wisely!
@unbekannter_Nutzer
@unbekannter_Nutzer 2 года назад
find -name "*.txt" -printf "%f "
@Duder-y5o
@Duder-y5o 9 месяцев назад
You ever heard of the program ALDO?
@joseph_donovan
@joseph_donovan 3 года назад
Jay, please ! Leave the jokes of profound feebleness to Mac users!
@patrickmeylemans9627
@patrickmeylemans9627 3 года назад
Apt install mlocate Updatedb Locate file name
@LearnLinuxTV
@LearnLinuxTV 3 года назад
That’s what I used when I first started, before learning find.
@unbekannter_Nutzer
@unbekannter_Nutzer 2 года назад
If you remember significant parts of the filename, yes. With find you can search for files, modified 6 to 8 weeks before with a size below 50k, user u and permission p, exclude significant parts of the file system, youngest files without rerunning updatedb and search files in directories, omitted by updatedb. Then you may perform different operations with -exec on them, print output in customized way with -printf.
@geogmz8277
@geogmz8277 3 года назад
Hey man! You shouldn't share your $HOME location on the Internet you can end up swatted.
@dr.mikeybee
@dr.mikeybee 3 года назад
Find is great, but mlocate is better.
@joanarling
@joanarling 3 года назад
What if you search for files that have been created during the last week? You use "find", not "mlocate".
@dr.mikeybee
@dr.mikeybee 3 года назад
@@joanarling Yes, find has much more functionality, but 9 times out of 10, all I want is to find a file by name. mlocate is a 100 times faster. It doesn't produce error output that needs to be redirected, and the syntax is intuitive. Yes, I love the find command when I want all files created or modified in the last 3 minutes, but I rarely need that.
@yt-watcher-finn
@yt-watcher-finn Год назад
Thanks !
@JohanEkelund84
@JohanEkelund84 3 года назад
Awesome as always Jay! Extra thanks for the tips on Lacuna Coil, havent heard of them! Btw, I bought your book Mastering Ubuntu server 18.04, half way through it now and love it! Keep up the good work!
@carparkdoobrie
@carparkdoobrie 3 года назад
To find your car keys look in th pockets of your Kaki trousers
3 года назад
25:53 You don't have to have "execute" in files, but you need on directories: Windows user goes TILT...
@subtitles1492
@subtitles1492 3 года назад
2:27
@cleightthejw2202
@cleightthejw2202 2 года назад
Hey dude, you mentioned that band and said it was your 'favorite'. I thought to myself 'I gotta check this out' just to see what that band was/is about as far as their style goes. Gotta tell ya - was not expecting that boss :)
@DaKidReturns
@DaKidReturns 3 года назад
Can you do a detailed video on grep?
@cordovajose5693
@cordovajose5693 3 месяца назад
Instead of jumping all the way to exec you shouldda explain other optiones to narrow the search like mtime, ctime, find by permissions, exclude dirs (not filtering them out with grep -v) etc.
@gnuPirate
@gnuPirate 5 месяцев назад
Thank you for this! It's such an essential tool, but I actually "find" aspects of the usage of this somewhat "basic" or essential command to be a bit difficult to navigate.
@thingsiplay
@thingsiplay 3 года назад
In Windows you have to search something. In Linux you just find it.
@anmac6910
@anmac6910 Год назад
How do I copy with cp and exclude all files including files without extensions from a MTP mounted android phone ?
@ghostintheshelf8660
@ghostintheshelf8660 7 месяцев назад
Lacuna Coil + your last name LaCroix.... make me think you're a VTMB fan ;)
@gdiaz8827
@gdiaz8827 2 года назад
why isnt there a standard command set for linux instrad of worrying about distros
@guilherme5094
@guilherme5094 3 года назад
Thanks!
@JL-nc4yz
@JL-nc4yz 2 года назад
Dziękujemy.
@ratfuk9340
@ratfuk9340 2 года назад
I've used find quite a lot but I didn't know about the exec option. It's nice to know although I dont think I'll use it very often. Nice video
@Anonymous-XY
@Anonymous-XY Год назад
Thank you very much.
@k.chriscaldwell4141
@k.chriscaldwell4141 10 дней назад
Great. Thanks.
@WorldWorrier3273
@WorldWorrier3273 2 года назад
You are Awsome🤜 men, you are a very good teacher really🥳.
@dougtilaran3496
@dougtilaran3496 3 года назад
I like catfish
@sohaibesohaib2914
@sohaibesohaib2914 Год назад
thank u
@vanitymeetstechnology8792
@vanitymeetstechnology8792 2 года назад
Thanks a lot sir.. how did I Find U on RU-vid.. now that I found you.. I have learnt the usage of "find" .. Good day sir
@BujuArena
@BujuArena 3 года назад
Thanks for the info. By the way, I noticed you said slash when you were indicating a backslash. I corrected it mentally myself, but others with less experience may not, and may accidentally type a slash instead, which would have unintended results when trying to escape the semicolon.
@abhinav3629
@abhinav3629 Год назад
thank you so much. this video was really useful. thank you thank you
@morenteria2988
@morenteria2988 3 года назад
Jay, you’re a fu……wait, what video is this? Oh yeah, Jay you’re a funny guy!
@RichM1967
@RichM1967 Год назад
Find command is great -- locate is also a useful tool to quickly find stuff.
@dougtilaran3496
@dougtilaran3496 3 года назад
I just use Alexa. Find my bong
@juanrebella2589
@juanrebella2589 2 года назад
Thanks! Really helpful. Nacho.
@zypeLLas
@zypeLLas Год назад
Cool vid, I did learn something!
@nevoyu
@nevoyu 3 года назад
I learned how to use the find command before I ever learned how to use man, lmao
@DaKidReturns
@DaKidReturns 3 года назад
Great content, following your channel since 2019 and really love your stuff. Can you make a video on gpg I think it is a bit over looked
@joshmcneil1086
@joshmcneil1086 2 года назад
I'm loving these videos Jay. I wonder if you might take the time to address those certain concerns surrounding certain options?
@13thravenpurple94
@13thravenpurple94 2 года назад
Great work 🥳🥳🥳 Thank you 💜💜💜
@sussusamogus7831
@sussusamogus7831 Год назад
loved this, thanks jay
@lucaspascual5956
@lucaspascual5956 2 года назад
Excellent content, greatly appreciated.
@rahulchoudhari83
@rahulchoudhari83 2 года назад
hello sir your video is excellent. I Have a doubt. How to find files of size in between 10kb to 30 kb?
@deprimarvin5382
@deprimarvin5382 2 года назад
You can use `find -size +10k -size -30k`
@landlocked4771
@landlocked4771 3 года назад
Thanks for that, you had good reasons for doing what you did, some people will show you how to use commands and then I think why would you want to do that, lol. I'm so glad you like making these instructional videos, you are very good at it and your helping a lot of people. Thank you.
@piotrkondzioka4009
@piotrkondzioka4009 3 года назад
great lesson! thanks a lot
@gigger-nigga
@gigger-nigga 3 года назад
less go
Далее
Linux Crash Course - The sed Command
15:25
Просмотров 124 тыс.
Катаю тележки  🛒
08:48
Просмотров 225 тыс.
Xargs Should Be In Your Command Line Toolbag
16:24
Просмотров 99 тыс.
Linux Crash Course - Symbolic Links
30:07
Просмотров 62 тыс.
Linux Crash Course - The grep Command
14:57
Просмотров 108 тыс.
Linux Crash Course - The cut Command
14:25
Просмотров 19 тыс.
Learning Awk Is Essential For Linux Users
20:02
Просмотров 299 тыс.
The Linux Experience
31:00
Просмотров 1 млн
Wi-fi с бесконечным паролем 😱
0:18
Скучнее iPhone еще не было!
10:48
Просмотров 589 тыс.