There's more to learn about the "cd" command. Lil' Linux Lesson!

Поділитися
Вставка
  • Опубліковано 28 січ 2025

КОМЕНТАРІ • 149

  • @CronoCloudAuron
    @CronoCloudAuron Рік тому +10

    I've been using Linux since 2002 and I didn't know about "-". Yay learning! Linux is awesome, and so are you.

  • @nuclearnyanboi
    @nuclearnyanboi Рік тому +10

    Your videos have a @Technology Connections vibe. So comforting to watch.

  • @LeftoverBeefcake
    @LeftoverBeefcake Рік тому +39

  • @Thankz4sharing
    @Thankz4sharing Рік тому +2

    sudo pronounced as "Sue Dough" made my day. Any other way of saying it grates on my ears. Veronica is a treasure.

    • @theherk
      @theherk Рік тому +1

      It isn’t asking Sue to make dough but the Super User (context) to DO something. So I suppose it makes sense either way.

    • @Thankz4sharing
      @Thankz4sharing Рік тому +1

      Being consistently rational is not one of my strong points. Fortunately I am now retired and have fewer occasions to pronounce ‘nix commands in my head. These days I’m more likely to think “Ess ewe dee oh? What’s that?”

    • @theherk
      @theherk Рік тому

      @@Thankz4sharing A great old Phil Collin’s tune, by the sound of it. 😂 Enjoy retirement.

  • @danielbrunk9121
    @danielbrunk9121 Рік тому +5

    I missed the "...and so are you!" Part at the end😢❤ great vid. Always comforting to watch one of these

  • @JarrodMcKitterick
    @JarrodMcKitterick Рік тому +3

    Was thinking.. oh cute the 'cd' command. I will watch for fun. And then BAM! Veronica hits me with the cd - It's been something like 42 years and I did not know (remember) that. Thank you!

  • @gentoolive
    @gentoolive Рік тому +9

    Don't forget the lovely functionality of hitting the TAB key while cd'ing around.. saves alot of typing

  • @james_neko
    @james_neko Рік тому +30

    Not related specifically to `cd`, but using Alt-. (hold alt, tap period) is fantastic when navigating the shell.
    If I've just done `mkdir -p /some/long/path/name`, I can then go to the newly created directory by typing `cd ` , pressing Alt-. to insert the last word of the last command, and then enter. If it's from several commands ago, I just keep pressing Alt-.
    Then there's also `pushd .` and `popd` if you wanna get fancy.

    • @SlyPearTree
      @SlyPearTree Рік тому +1

      Alt-. does not seem to work in vi mode. After some googling I found that adding the following to ~/.inputrc will do it:
      set editing-mode vi
      set keymap vi-insert
      "\e.":yank-last-arg
      Those who do not have a ~/.inputrc can just create it. Up to now I simply used !$ but Alt-. has the advantage of going back in history when pressed repeatedly.

    • @ludwig2345
      @ludwig2345 Рік тому

      Oh, that's nice. It's like a fancier "cd !!"
      I hope it works on my non english keyboard.

    • @ThatNateGuy
      @ThatNateGuy Рік тому +2

      Huh. Interesting. I come from a Windows background but have absolutely loved PowerShell. The more I learn about UNIX shells and commands, the more I see the roots of what I'm more familiar with.
      I want to be better on Linux, so I'll keep learning to do it the Linux way !

  • @malfunction5448
    @malfunction5448 Рік тому +2

    when I saw this video was published, I thought, "I'll bet I manage to learn something new". And I did. Never knew about "cd -". Awesome!

  • @mcosta3810
    @mcosta3810 Рік тому +2

    My favourite part of this video was when you said, "kind of like opening a different folder in a file browser." Amiga Workbench!!!!! 😀

    • @VeronicaExplains
      @VeronicaExplains  Рік тому +4

      I was tempted to say "drawer" but I was worried folks wouldn't get it. :)

  • @coolworx
    @coolworx Рік тому +2

    I made an mdc alias, which stands for make directory then change into that directory.
    Very handy!

  • @brianstuart3499
    @brianstuart3499 Рік тому +3

    Just a quick comment on the question raised at the end of why cd is a shell built-in. It's a function of the chdir system call. That system call changes the working directory of the process that calls it. But when running an external program, the shell forks a child process. So a chdir call made there would only change the working directory of the child, not of the shell process itself. As a result you can't really have an application program that changes the working directory of the interactive user, short of starting a new shell and killing the parent process. Another interesting tidbit is that the behavior of things like '-' and the '~' notation are actually implement in the shell, and not the kernel. I.e., you can't expect them to work if you write a program that calls chdir to change the directory the program is running in. On the other hand '..' is implemented in the OS and in most file system implementations is literally stored in the directory data structures on the disk. (Okay, that wasn't as quick as I intended.)

  • @ChrisHarringtonMinneapolis
    @ChrisHarringtonMinneapolis Рік тому +5

    This is great. Really appreciate how seriously you treat a topic that some folks would dismiss as being obvious. I grew up with DOS, but there are adults now that have only ever used a touchscreen. We all start somewhere, and some folks are most assuredly starting here!

  • @jordondavidson3405
    @jordondavidson3405 Рік тому +2

    Over 25 years using linux and I never encountered cd - Thanks for the tip. Keep up the great videos.

    • @m1k1a1
      @m1k1a1 Рік тому

      The comment section is just as good! 30 years using unix-like systems and I never knew Alt-. (ALT + period) inserts the last word of previous command.

  • @cassandradawn780
    @cassandradawn780 Рік тому +3

  • @Healing_Coding
    @Healing_Coding Рік тому

    Just found out this channel, and it has become one of my favorites so far

  • @thatjpwing
    @thatjpwing Рік тому +5

    I totally never knew about man builtins, and I've been using this stuff for decades!

  • @jakejoyride
    @jakejoyride Рік тому +1

    That was very helpful because I learnt 2 new things in under 5 minutes so Thank You Very Much Veronica :)

  • @posiputt1476
    @posiputt1476 Рік тому +11

    here's a thing I tripped over in my early linux days: there has to be a space between "cd" and ".." unlike in DOS, where it works without the space. this may not be a common problem anymore though :)

  • @mausmalone
    @mausmalone Рік тому +5

    One of the things that I both love and hate about Linux is that even though I've been using it for years, I still learn new things about even basic stuff all the time. I love that there's all that depth, but hate that it's all kind of secret knowledge. The only tip I would add to this, btw, is how helpful tab autocomplete can be when using CD. For example, if you were in ~/Downloads/songs/RockyHorror and wanted to get to Absolute Treasures but couldn't quite remember how to escape spaces, you could always type "cd Abs" and then the tab key and it'll complete all the escaping for you. Sure it's lazy, but it's also very very safe.

  • @syrus3k
    @syrus3k Рік тому +1

    props for using amiga workbench for your example. Soooo cool.

  • @FeatherzMcG
    @FeatherzMcG 12 днів тому

    Turns out even for the most basic command, there's still things to learn. Thanks for "cd -", much appreciated

  • @slightlyprofessional
    @slightlyprofessional 10 місяців тому

    Loving this channel. Can’t wait to see more videos about Linux and I’m just getting started learning it.

  • @david486038
    @david486038 Рік тому +5

    WOW! Love the explanation. You think you know linux 'CD' commands, but there is always something new to learn.
    Thanks Veronica! Your Awesome.

  • @LaubeQ
    @LaubeQ Рік тому +1

    I paid a certification for a low value course and I feel like HACKERMANS writing comments on how the video did not show them - and ../chain tricks!
    Bummed the views do not reflect the quality of these videos, but I really hope you don't stop making them. You explain things really well (pun not intended) without adding things that could be confusing and you also don't leave out things like these that could be actually very useful. I'm learning AND having fun. Take that, high school teachers! (and college teachers...)

  • @keylowmike85
    @keylowmike85 Рік тому +1

    I'm just happy to hear someone else pronounce sudo like "pseudo" or "judo". All jokes aside, I like the Lil Linux Lesson series, very informative.

  • @thenewriotact
    @thenewriotact 8 місяців тому

    Glad ppl like you exist

  • @EricaCalman
    @EricaCalman Рік тому +3

    I actually somehow didn't know about the "-" trick, and it will improve my life quite a bit, thank you!

    • @abodabalo
      @abodabalo Рік тому

      Same here, after decades of cd‘ing. Thank You!

    • @meiowalot7570
      @meiowalot7570 Рік тому

      Same here! I’ve used Unix since DEC Ultrix in college in 1990.
      Now it makes sense why there is a “git switch -“

  • @Xander_92
    @Xander_92 Рік тому

    Wow, honestly I've been using Linux for years but I did not know all of those cool tricks! Keep up the good work and thank you for making this video.

  • @brunosouza2918
    @brunosouza2918 Рік тому +1

    》(that's because of it you still have to apply backslash before an empty space, just like you'd do in C coding)

  • @YannMetalhead
    @YannMetalhead Рік тому

    Good video. Using aliases you can go to your most used folders typing a single world like "Downloads". I created aliases for all my most used folders so I can move between them really fast.

  • @carltondoorman9145
    @carltondoorman9145 Рік тому +1

    Good video. CD is familiar to me because of the similarity to the DOS CD command, and I was quite a DOS wizard many years ago. My big stumbling block has been learning to navigate through different drives, given that Linux treats every thing as one big directory structure. There's always more to learn...

  • @synen
    @synen Рік тому

    Thank you Veronica love these videos!

  • @brunosouza2918
    @brunosouza2918 Рік тому +4

    》You see, Veronica, in my classes, I always speak about the importance of DEC PDP series (minicomputers) as they were deeply used during the initial development of C programming language, original UNIX OS and then, even indirectly, TCP/IP. I tell them that almost EVERYTHING we have nowadays comes from these 70s' technologies.

    • @JarrydNielsenLMAO
      @JarrydNielsenLMAO Рік тому +1

      This is why I recently picked up a DEC J-11. Mostly to touch and look at, but I would like to put some electricity through it at some point :D

    • @brunosouza2918
      @brunosouza2918 Рік тому

      ​@Jarryd Nielsen 》That’s awesome, Jarry, there’s quite a lot of useful stuff ("grabbed" from UA-cam videos) you can take a look at in order to repair your computer, the other day, I myself watched a complete disassembly.

  • @AnalyticMinded
    @AnalyticMinded Рік тому +4

    Nice! I always just type the two dots '..' to go up a directory, instead of 'cd ..' I'm not sure if this works everywhere, as I am using zsh as my shell.

    • @posiputt1476
      @posiputt1476 Рік тому

      nice, I didn't know that! I'm using zsh, too. and I tried it out in bash, but there ".." does nothing.

    • @Mitsunee_
      @Mitsunee_ Рік тому

      that's definitely a zsh-thing, on bash you need to set up an alias for this first: alias ..='cd ..'

    • @RedSntDK
      @RedSntDK Рік тому

      In DOS I used to do "cd.." with no space at all, so it seems like there's different flavours from OS to OS.

    • @qwfp
      @qwfp Рік тому +1

      But wait, there's more! You can add more dots to go even higher up. So '...' would be equal to 'cd ../..'. You can use up to 6 dots. And it works with cd too! 'cd ...'. But that's still a zsh feature.

    • @mulad
      @mulad Рік тому

      "cd.." (no space) could definitely be set up as an alias if you wanted, and I imagine ".." is a default alias on some distros. I imagine the "cd ..." (3 dots) in zsh was done for people who remembered using that trick in DOS/Windows. In the broadest case, "cd .." works because there is literally a directory named ".." in most paths, which you can see with "ls -l", but "..." (3 dots) isn't really there. There isn't a ".." directory in the root (/) directory, so some shells or programs could throw an error if you tried to go up a directory from that path

  • @willemvandebeek
    @willemvandebeek Рік тому

    I actually learned multiple things new to me here, thank you! :)

  • @yellowsubmarine2261
    @yellowsubmarine2261 Рік тому

    I didn't know the thing about spaces in folder names, I've been confused by that before so I'm glad to know what was happening. I try to avoid the terminal if possible as I'm not as comfortable using it so these videos are really helpful for when I need to use it.

  • @PenguinRevolution
    @PenguinRevolution Рік тому +1

    "cd" is one of those very important commands in the shell. Plus it allows me to go places in my computer and sometimes I can go on an adventure in my system.
    OK I know I'm a nerd.

  • @jollyleprechaun5436
    @jollyleprechaun5436 Рік тому

    Love these little nugget lessons. Great info!

  • @EXQEX9
    @EXQEX9 Рік тому

    This is such based Linux content! Glad to discover more content creators that seem inclusive and passionate about the subject! 🎉

  • @nikhilmaan9498
    @nikhilmaan9498 Рік тому +1

    best retro vibe's from 2010 i love it

  • @skorotkiewicz
    @skorotkiewicz Рік тому +1

    pro tip: cd /us it autocomplete the name

  • @yogibear2k220
    @yogibear2k220 Рік тому

    Thanks Veronica. A lot of the CLI commands like this make sense for me (as DOS 6.22 was my first operating system and all of them made sense) because their initials actually stand for what they do (CD, Change Directory, MkDir (or MD) Make Directory, etc,) but what about some of the commands that don't do this like (PWD, which I thought was for password, but, no, and the Touch command, not a clue.) I hope that you carry on with this series. Thanks Veronica.

  • @billcoons2730
    @billcoons2730 Рік тому

    Loved this lesson. I learned Unix a long long time ago in another galaxy far far away, And I still learned so much, thank you. And we still use COBOL? I vaguely remember it and JCL. Cool!

  • @limitationsapply
    @limitationsapply Рік тому +1

    You can configure some shells so they treat entering a directory name as an implicit cd to that directory:
    bash: shopt -s autocd
    zsh: setopt autocd
    tcsh: set implicitcd
    fish: default, but requires a trailing / or leading / or ./
    nushell: default, but requires a leading / or ./

    • @gabrielgian6207
      @gabrielgian6207 Рік тому

      Discovered this by accident using fish but I can't really get over the habit of typing cd

  • @Insightfill
    @Insightfill Рік тому

    3:46 LOL. Takes me back to my CP/M days where EVERYTHING was a program!

  • @shivuindaragi7789
    @shivuindaragi7789 Рік тому

    Love to see more videos like this.

  • @kevincozens6837
    @kevincozens6837 Рік тому

    In addition to cd two companion commands are pushd and popd. The pushd command remembers your current directory before changing to another one. You can then cd around to other directories (if you want) and return to your starting directory using popd. pushd also works with .., ~, and -.

  • @TheCodeTinkerer
    @TheCodeTinkerer Рік тому

    Very nicely explained as always !
    A video about 'grep' could be interesting for the next Lil'Linux Lesson

    • @VeronicaExplains
      @VeronicaExplains  Рік тому +1

      That's on my radar! I'm trying to work my way from "most beginner" to more complex as I release these. :)

    • @TheCodeTinkerer
      @TheCodeTinkerer Рік тому

      @@VeronicaExplains yes that is what I thought and I think that grep would be the next logical step

  • @jscollett
    @jscollett Рік тому

    Love these, thank you so much!

  • @jarrodurban6927
    @jarrodurban6927 Рік тому +1

    Great video. Any thoughts on the use of the word folder vs. the word directory? For some reason, I seem to have emotions attached the topic.

    • @VeronicaExplains
      @VeronicaExplains  Рік тому +3

      I tend to go with either one. I also go with "drawer" from Amiga stuff, so my mind is pretty flexible on it.
      If I think about it, I imagine I call it "directory" more from the terminal and "folder" more from a GUI.

  • @HyenaEmpyema
    @HyenaEmpyema 6 місяців тому

    an old greybeard taught me about the pushd/popd commands. if you know you want to return to your current directory, type "pushd /somewhere/far/away/over/the/rainbow" do your business, and the type popd to be teleported back to reality.

  • @PikoroRey
    @PikoroRey Рік тому

    I love these mini tutorials. Have you noticed that you're like the video version of the TLDR command?

  • @edheil
    @edheil Рік тому +1

    OK I've been using Unix since the early 90s, I watched this just for fun expecting to learn nothing cause it's like the a-b-c's, and damned if I didn't actually learn something! I never knew about "cd -"! Nice!

  • @geoffmerritt
    @geoffmerritt Рік тому +1

    wow... learnt ../.. and - today. I was feeling pretty smug up till then.

  • @fractalphilosophorum9405
    @fractalphilosophorum9405 Рік тому

    Fun little fact, the dot is used as a symbol for the current directory by the cd command.
    Also when you specify an absolute path, the cd command starts at the root of your files system, then it switches to relative mod, then it starts reading the path directory by directory, you can see that by trying something like
    cd /home/user/Pictures/../Desktop/RandomDirectoryOnMyDesktop
    which is equivalent to run
    cd /home/user/Desktop/RandomDirectoryOnMyDesktop

  • @jennycotan7080
    @jennycotan7080 5 місяців тому

    Thanks, madam! Just gonna learn about Linux commands in your lessons!
    Yeah, just as this comment was posted, I'm still new to Linux...

  • @KeritechElectronics
    @KeritechElectronics Рік тому +1

    Ha! I didn't expect it, but I learned something new.

  • @meiowalot7570
    @meiowalot7570 Рік тому

    You rock, Veronica! Love the Amiga Workbench screenshot.
    I am horrified to admit that as a UNIX user off and on since about 1990, I only learned about cd - about a year ago.
    I never liked using pushd/popd, they seemed a little too clunky for me.

  • @kev2020-z9s
    @kev2020-z9s Рік тому

    Thank you for the series Lil' Linux Lesson! Quick question about the BASH-BUILTINS(7) what the (7) for IP(8) has (8) any help explaining it would be most helpful.

  • @denhafiz1860
    @denhafiz1860 Рік тому

    Wholesome content on Linux

  • @tuxino
    @tuxino Рік тому

    About the /usr/bin/cd file, I would guess that is is to support the use of other shells that don't have cd builtin, without the need to make (and maintain) a separate binary for the command.

  • @cbrunnkvist
    @cbrunnkvist Рік тому

    In Bash, to get help about each builtin, use the "help" builtin: e.g. `help cd`. This is something Z shell overlooks. In general, I find zsh man pages divided in an unintuitive way, as opposed to bash's single page that you can easily `/`-search through.

  • @timtim9o5
    @timtim9o5 Рік тому

    This was really good, thanks

  • @folksurvival
    @folksurvival Рік тому

    There is no manual entry for builtins on Void Linux.

  • @elmestguzman3038
    @elmestguzman3038 Рік тому

    Thank you always learn something new with your Explanations!!! 😉

  • @mihai6564
    @mihai6564 Рік тому

    good video.
    I saw your cat on Learn Linux TV :)

  • @tristan7216
    @tristan7216 22 дні тому

    Finally one where I knew them all, after 30 years I ought to.

  • @encycl07pedia-
    @encycl07pedia- Рік тому

    I didn't know about cd -.
    I don't do a whole lot of navigation on the bash prompt, though. I prefer using vifm for directory and file navigation. Once you're there, it's easy to open a shell if you want.

  • @Pedritox0953
    @Pedritox0953 Рік тому

    Great video!

  • @astropgn
    @astropgn Рік тому

    I am a windows user and I would like to start using the linux subsystem. Considering this channel talks about a varied number of distributions of linux, I would like to suggest making about about wsl. For example, I still don't know if it is fully compatible with a standalone installation of linux, or if it performs better or worse... It would be interesting to have a video on that. But I do understand that viewers might not want to know about windows hehe

  • @miepmiepzoefzoef
    @miepmiepzoefzoef Рік тому

    cd ~
    cd `pwd -P`
    Are useful additions

  • @Laszlo34
    @Laszlo34 8 місяців тому

    I love the shirt! Ethernet twisted pair? :D

  • @furicle
    @furicle Рік тому

    You can use `help cd` rather than man built-ins and scrolling. The built-ins have entries under `help`

  • @catupeloco
    @catupeloco Рік тому

    Regardless I known for a whiiiile cd command is really good to hear from you.
    Regards!!

  • @Wandering_Horse
    @Wandering_Horse Рік тому

    Love the 'Linux' refrigerator magnets from the 80's 😁

  • @locnar1701
    @locnar1701 Рік тому

    Great lesson, but I am so distracted by the bashtop output over your shoulder. What has got that machine so loaded down? Whatcha Dooin'?

    • @VeronicaExplains
      @VeronicaExplains  Рік тому

      Haha! I was probably transcoding video. I've been setting up a Jellyfin server and ripping old DVDs!

    • @locnar1701
      @locnar1701 Рік тому

      @@VeronicaExplains That, as they say, will do it...

    • @theherk
      @theherk Рік тому

      ⁠​⁠@@VeronicaExplains is it bashtop? Looks more like clementtsang/bottom to me.

  • @LupusMichaelis
    @LupusMichaelis Рік тому

    For bash builtins, the help command is a bit more sensible than the manpage I never knew I could find (at least under Debian, don't know in RedHat world)
    help cd

  • @Schaelpy
    @Schaelpy Рік тому

    Awesome!

  • @LocovsworldNL
    @LocovsworldNL Рік тому

    Thank god i was wondering when i saw the video .. Am i up te sratch? i was .. i knew all of this .. I have to admid this is good tutorial for the new unix friends among us! (welcome you all)

  • @zyghom
    @zyghom Рік тому

    bloody mary - I would NEVER expect a video about "cd"... - omg!;-)

  • @andyweb7779
    @andyweb7779 Рік тому

    I've a question that you could even do a video about :D What company will be the first to make an AI operating system? Do you think it will just be a regular OS with AI capability or a completely new kind of OS that runs off the back of an AI? What would it even look like or be like??

  • @Mitsunee_
    @Mitsunee_ Рік тому

    Was waiting for `cd -` to yell "I KNEW THAAAT!!" but I didn't know why it worked. I also use cd without args to get to home a lot these days since getting a tilde and then pressing Enter is rather uncomfortable on a de_DE keyboard.

  • @matthewsalmon5640
    @matthewsalmon5640 Рік тому

    hi there, nice vid, i like:
    alias ..='cd ..'
    yay

  • @metakontakte
    @metakontakte 18 днів тому

    That /usr/bin/cd will start a new shell which changes its directory according to the arguments given and terminates. That has no impact on the invoking process which does not change its directory. So, I don‘t see any value of that cd „as an external command“.

  • @JuarezJaques
    @JuarezJaques Рік тому

    U Amazing!!! Thx for explained.

  • @MasterHigure
    @MasterHigure Рік тому

    Single dot refers to the current directory (which is usually 100% redundant when using cd) and double dot means one directory up. I think it's sad that the pattern doesn't continue. Triple dot for two levels up, and so on.

  • @dienvidbriedis1184
    @dienvidbriedis1184 Рік тому

    akthulally this is Lil' GNU/Linux lesson!

  • @vicmac3513
    @vicmac3513 Рік тому

    Seems like I've skipped a few docs because after a decade with Linux I learnt today 'cd -' -command.

  • @DavidLindes
    @DavidLindes Рік тому

    3:59 - wait, what? Really? Does that even work?!? Because unlike some builtins, cd necessarily must actually be run as a builtin… which… makes me surprised to hear about this, and…. Curious how (if) it actually works. I guess I’ll have to poke around on a system that has it, and see what the deal is. Fascinating.

  • @KarmaMan82
    @KarmaMan82 Рік тому

    TAB-Key is your best friend!
    Can you make a little COBOL - Tutorial?

  • @ckieee
    @ckieee Рік тому

    happy cd'ing! (shelling?)
    going to go see the wyse video now (:

    • @VeronicaExplains
      @VeronicaExplains  Рік тому

      Thanks! That one was my very first video, go easy on me! :)

  • @lee99bay
    @lee99bay Рік тому

    👍

  • @bharogh1658
    @bharogh1658 Рік тому +1

    Would love to see actual linux tutorials not the most basic commands we ve been using since msdos

    • @VeronicaExplains
      @VeronicaExplains  Рік тому +2

      Not everyone knows what you know. I'm making things at multiple skill levels.

  • @phileasfogg65
    @phileasfogg65 Рік тому

    In bash: CTRL-X CTRL-E to edit your command in $EDITOR

  • @Jobjoossen
    @Jobjoossen Рік тому

    TIL cd - and cd

  • @kcnmsepognln
    @kcnmsepognln Рік тому

    this gave me Windows 3.1 flashbacks

  • @PlatinumLucario
    @PlatinumLucario Рік тому

    The cd command is also very useful with combining them with other shell commands, such as 'ls [directory] -al' to view all hidden files and the permissions assigned to them, such as 'cd /bin && ls -al', where the '&&' operator allows a second command specified right after the first.
    One way to familiarise with all the built-in shell commands and individual app commands, is through installing Arch Linux, Gentoo, Void Linux or some distribution in where you can manually install the OS.

    • @theherk
      @theherk Рік тому

      `;` allows a following command in most shells, where `&&` is a condition that will only execute the next command if those preceding return 0. Using this in the case of combining `cd` with `ls` is actually more keystrokes than just using the return key. But other examples work well for combination with `cd` like `find … -exec cd {}; … && cd -`.

  • @belstar1128
    @belstar1128 Рік тому

    So it doesn't have anything to do with cd roms );

    • @eDoc2020
      @eDoc2020 Рік тому +1

      It depends on what the filesystem is backed by ;)

  • @TheMyname707
    @TheMyname707 Рік тому

    After watching almost all videos I have a recommendation. Can you leave important text a little bit longer on screen. I almost can never read everything and have to rewind the video.
    For jokes gags and other kind of potentially vimy humor it's OK obviously. 😊