Bash vs ZSH vs Fish: What's the Difference?

แชร์
ฝัง
  • เผยแพร่เมื่อ 20 พ.ย. 2024

ความคิดเห็น • 343

  • @Psoewish
    @Psoewish ปีที่แล้ว +156

    I just use fish as my interactive shell because of how comfortable it is to work with, and then use bash for anything else, including scripting. This seems to be a very common setup and it works really well.

    • @kaitlyn__L
      @kaitlyn__L ปีที่แล้ว +11

      Yep, I use fish for all my day to day but all except my simplest scripts specify bash. There’s just many more resources for more complex scripts in bash, so why bother translating them into fish if you can just invoke bash in the first line?

    • @BosonCollider
      @BosonCollider ปีที่แล้ว +2

      I take this slightly further and generally use dash instead of bash for scripts. Dash is literally made to be run as the system shell to run scripts even when the interactive shell is bash, and encourages you to write portable posix-compliant scripts.
      By contrast, fish is kind of suboptimal as a scripting language since fish scripts are not very portable, and tend to be slightly slower than just writing python or perl which are going to be installed on more systems than fish. But it is really nice as an interactive shell. I've tried shells which are supposed to have more features but ended up missing quality of life features like the amazing fuzzy search when you press tab while typing out a file path in fish

    • @m.jamilrahman4971
      @m.jamilrahman4971 11 หลายเดือนก่อน +1

      I use fish + starship, yeah i'm lazy 🤣

    • @typingcat
      @typingcat 5 หลายเดือนก่อน

      It's not like every system is BASH by default. OpenWrt and Alpine Linux seems to use ASH. So, in either way, I need to use more than 3.

  • @snuggie12
    @snuggie12 ปีที่แล้ว +149

    Appreciate keeping it objective. I was actually looking for "what to know if you're switching from bash to zsh" and every video that popped up was a sales pitch or dunking on bash.

    • @haroldcruz8550
      @haroldcruz8550 25 วันที่ผ่านมา +1

      In reality most people go back to bash when the novelty of all of these new cools tools fade away.

  • @Jeff_Seely
    @Jeff_Seely ปีที่แล้ว +24

    Eric, this is one of the most complete explanations on the subject, that I've ever seen. You didn't assume that the viewer knew a darn thing about programming and configuring and you concisely cover it so that anyone could understand. Great job!!!

  • @bburton333
    @bburton333 10 หลายเดือนก่อน +6

    Great explanation of these shells. One thing many don't understand is it's not necessary to use one kind of shell for everything. For writing simple scripts, I would use Bash or /bin/sh to be (mostly) POSIX compliant. This skill once learned, can be used on any Linux or Unix system with very little deviation. For more complicated scripts I'd use Python, Ruby or Perl, etc. This is true even if my interactive shell of choice was zsh or fish, etc. One exception is it seems Macs now define zsh as the default shell. Even so, for scripting I'd probably use /bin/sh unless there was some feature I really needed from zsh. To put it another way, I probably wouldn't ever write scripts in zsh or fish unless it was for configuring the interactive use of that shell.
    For interactive use, use whatever shell makes you the most productive. If this is your own machine or account that you have complete control over, go ahead and change the default shell but if you have to share an account with others on a server, then leave the default shell and run exec zsh or exec fish after logging in. This is also how you can try different shells without changing the default one.
    I've been using zsh off and on for 30 years and even when I first started using it back then, it was head and shoulders above the ksh shell which was the only other shell that made sense for interactive use on the systems I maintained. I've never used fish but did checkout the docs and it looks nice for interactive use.

  • @Nevermore101
    @Nevermore101 2 ปีที่แล้ว +35

    Very well laid out - thanks! Especially liked the parts about the posix compliance as it really helps me make up my mind about what shell to use going forwards.

  • @pavelperina7629
    @pavelperina7629 ปีที่แล้ว +8

    It's funny that even thou scripts usually start with #!/bin/sh, they may not work with bourne shell (default on BSD) or dash (which is supposed to be smaller and faster), because they wrongly assume that /bin/sh is symlink to bash. And bash is POSIX compatible (it can run sh scripts), but it also adds some simplified, extended syntax, which is not.

  • @lVlonkberry
    @lVlonkberry 3 ปีที่แล้ว +41

    This was awesome! Thanks for the detailed explanations in between, this video really covered all the essentials.

    • @EricMurphyxyz
      @EricMurphyxyz  3 ปีที่แล้ว +4

      Thanks! Glad you found it helpful.

  • @BrandonZylstra-jb4jb
    @BrandonZylstra-jb4jb 7 หลายเดือนก่อน +12

    Fish is very nice, and I would have switched to Fish a long time ago, but it would have meant losing hundreds of aliases and functions that I had created over the years for Zsh, so it wasn't worth it. I can't imagine why the Fish creator(s) decided to use such a different syntax. It definitely creates a problem for adoption.

    • @schwingedeshaehers
      @schwingedeshaehers 6 หลายเดือนก่อน +1

      use a script to change the syntax?

    • @typingcat
      @typingcat 5 หลายเดือนก่อน +2

      @@schwingedeshaehers Or maybe just tell A.I. to convert the script. I recently used A.I. to convert my C# code to Python. It had bugs here and there, but it saved me a lot of time.

  • @theawesomesandbox
    @theawesomesandbox ปีที่แล้ว +9

    Ok, so here's a comment for the great info from the channel. I tried out Fish from using a basic terminal and I:
    - like the features included and not having to do the config myself from scratch (wow, autocomplete is kinda nice),
    - hate the fact it's not POSIX compliant (sorry, I like using code from the internet for basic tasks without having to do the conversions, since most of the stuff you'll find won't be for fish specifically).
    ZSH 4 humans then, probs.

    • @EricMurphyxyz
      @EricMurphyxyz  ปีที่แล้ว +2

      That's basically the exact same experience I had using Fish, haha

    • @kaitlyn__L
      @kaitlyn__L ปีที่แล้ว

      The autocomplete and history search is what sold me on fish, but I do most of the scripts in bash for the second reason. Works fine!
      Now if you’re doing custom bash scripting/programming straight into the command line for one time use rather than running a script repeatedly, I certainly wouldn’t want to switch back and forth all the time.

  • @SpaceEndeavour
    @SpaceEndeavour 2 ปีที่แล้ว +21

    My login shell is dash and my interactive shell is fish. I find that dash works well with all the stuff my system needs to do and fish works well with me.

    • @pavelperina7629
      @pavelperina7629 ปีที่แล้ว +4

      What's the difference between login and interactive shell?

  • @dogbyte7875
    @dogbyte7875 2 ปีที่แล้ว +6

    Nice! Thanks Mr. Murphy, for your time and efforts to make this video.

  • @k10_tech_nibba
    @k10_tech_nibba ปีที่แล้ว +4

    Thanks man, you have helped me today.
    I will stick with Zsh for now. 😊

  • @angeldude101
    @angeldude101 10 หลายเดือนก่อน +2

    Fish understands that the traits that make for a good interactive shell are completely different from the traits that make a good programming language (or scripting language). It's right in the acronym: *Friendly Interactive* SHell. Unlike bash which tries to be both a good scripting language _and_ a good interactive shell, fish focuses entirely on being a great interactive shell, and its scripting capabilities and really just for configuring said shell rather than anything else.

  • @FengLengshun
    @FengLengshun 26 วันที่ผ่านมา

    I ran into the POSIX compliance issue while on an Intro to Python class. It involved running Anaconda, which sets a customized environment for you, and naturally I ran into issues. In the end, I just switched to zsh, and after learning how to fish-ify it, I pretty much never looked back except for my Arch distrobox which runs fish to distinguish the environment for me and bash being set as my login shell to avoid any issues with Nix and the underlying system.

  • @rtothec1234
    @rtothec1234 ปีที่แล้ว +5

    If you only got time to learn one shell the learn bash. You’ll find it pretty much everywhere.

  • @orangemicroprocessing
    @orangemicroprocessing ปีที่แล้ว +1

    Thank you for the straightforward video. Really helped me out to someone who is pretty new to using unix shells.

  • @kmemz
    @kmemz ปีที่แล้ว +1

    Correct me if I'm wrong, but I think, in fish, if you add #!/bin/bash to the config, everything after that line may run with bash/POSIX syntax. I haven't actually tried it, I don't use fish, but if you're tinkering it's worth a shot to see if it works.
    Also, don't quote me on this, but I don't think zsh is fully POSIX, but they don't break very far away from it so most POSIX stuff should still work. If something doesn't work in zsh, I think there's a specific call you can make to put it in a POSIX compliant mode, though I forget what.
    The second part might also just be me misremembering a fish feature as a zsh feature, it's been a hot minute since I found my comfort zone between the three shells so the details are blurring together.
    As a last note on my comment, I toyed around with editing my PS1/Prompt line in ZSH when I was figuring out my setup, I came up with this line and have come to really like it, whomever reads this, feel free to steal it for yourself and drop it in your own .zshrc
    PROMPT='%F{green}[%F{red}%2~%F{green}]%F{white} 🠶%F{reset_color} '
    That line comes out looking like "[~] 🠶", of course with some fancy colors.
    And for almost fully fish-like integration, you can download the appropriate plugins to match this plugins line
    plugins=(zsh-autosuggestions zsh-history-substring-search zsh-syntax-highlighting)
    That's pretty much everything I do for my own zsh, outside of some aliases and exports.

  • @ВладКороль-м2л
    @ВладКороль-м2л 5 หลายเดือนก่อน +1

    It's worth noting fish doesn't exist to be a replacement for Bash scripting but t it was designed aa the usee shell. Look at what it offere interactively like out-of-box autocompletion or sophisticated search history, and how it sacrifices on POSIX compatibility. One more advantage of fish is that it's not inherently tied to Linux or Unix and works the same way regardless OS, which I think is an advantage.

  • @atarg2239
    @atarg2239 3 ปีที่แล้ว +5

    Thanks for video. I'd been searching that difference between them recently. 😄

  • @Nikolai508
    @Nikolai508 2 ปีที่แล้ว +9

    Personally I use zsh in my terminal, but if I write any scripts it'll be bash. Not sure if this is a stupid reason if the same results can be achieved with a bash shell, but I use zsh because I get features like tab auto completion that allows me to cycle through several results and select the one I want, git status info when entering a git controlled directory and so on.

    • @zeechy
      @zeechy ปีที่แล้ว +4

      Plus the z makes it sound cool

  • @okashiromi5541
    @okashiromi5541 10 หลายเดือนก่อน +1

    Personally I like zsh because I kinda feel like it's the best of both worlds if you're willing to set it up. It also help if you need to work with bash since you need to learn way less differences. I also don't like having two shells bc I feel like it kinda a waste of disk space. But that's a personal opinion and tbh the fish\bash combo might actually be more beginner friendly now that I think about it

  • @blendernoob64
    @blendernoob64 8 วันที่ผ่านมา

    ZSH is the default on Mac OS so I actually been thinking of switching to it on my Linux workstation. I love the autocomplete. However I don’t care about ricing up my terminal. I want my terminal to look like the one in IRIX or the one in Jurassic Park because SGI was so cool.

  • @PerJohanHalsli
    @PerJohanHalsli ปีที่แล้ว +1

    Zsh FTW ;)
    srsly tho - great video explaining the diferences without any bias towards or against any of them - I've been on Zsh for over a decade now and started out with oh-my-zsh as many do to get all the goodies at once - but it became kinda bloated - so I learned to set up my own config and never been happier - I've tried using fish several times but it's so frekin confusing - think I'm just too comfortable with what I'm using ;)
    Anyhow - well presented video

  • @johnterpack3940
    @johnterpack3940 2 ปีที่แล้ว +2

    Honestly, ease of modification isn't even a factor in my decision. I don't tend to modify things on the fly. Installing something to get bash tweaked is no more a hassle than installing a plug-in for zsh. I'm more interested in the things that might make a difference in daily operations.

    • @EricMurphyxyz
      @EricMurphyxyz  2 ปีที่แล้ว +1

      I mean, in my experience, installing a plugin for zsh IS easier than tweaking bash. However there's not a huge difference between the two besides some small things (like zsh has better tab completion). Feel free to use either one.

  • @whylde7834
    @whylde7834 3 ปีที่แล้ว +2

    Smart comparisons! Thanks for the video.

  • @QmiStudying
    @QmiStudying 5 หลายเดือนก่อน +1

    i just use zsh, oh my zsh makes it very easy to add plugins to your configuration. I can't imagine my life without them.

  • @mx338
    @mx338 6 หลายเดือนก่อน

    I like the fish had, throwing away the baggage of posix, to a create more friendly shell and scripting language, but they didn't overcome the portability problem.
    I instead write most scripts as a single file python script, since a Python 3 interpreter is present in almost every modern Linux system.

  • @mannedmodule
    @mannedmodule 26 วันที่ผ่านมา

    What I think you lose by meddling with multiple shells is the speed and productivity that comes with muscle memory when you become lightening fast using one. For that reason, and for portability reasons, I’ll stick to bash. I actually find it frustrating that the MacOs default is now zsh, and I have to hack my terminal to get it working with bash again.

  • @shimadabr
    @shimadabr 6 หลายเดือนก่อน

    One good thing AI brought us is the ability to easily translate a fish script to bash (and vice-versa). For simple scripts it will do a good job.

  • @ubercorey
    @ubercorey 2 ปีที่แล้ว

    Really great for this noob wondering how to get set up to start Dev study. Thank you!

  • @l-lawliet6174
    @l-lawliet6174 2 ปีที่แล้ว +1

    Fish is best simple and easy to use + you can customize it too with oh my fish.

  • @emil.steiner
    @emil.steiner ปีที่แล้ว +1

    since fish makes some scripts break i use bash as my default shell, but i invoke fish at the end of my .bashrc if it detects that it is in interactive mode

  • @Doc_playzz
    @Doc_playzz 2 ปีที่แล้ว

    Yesssss, thats what i was looking for. hanks for helping

  • @AMathMonkey
    @AMathMonkey 2 ปีที่แล้ว +7

    I actually like fish as a scripting language. I think the POSIX standard is odd and makes it easy to write bugs (like if you don't know when to quote variables, or when a process will run in a subshell) and fish fixes these issues by doing saner things by default and removing confusing features (like word-splitting and subshells). I'd love to see fish pre-installed alongside bash in the future so that fish scripts can be considered more portable than they currently are. But something like `sudo apt install fish` is easy to run in the meantime.
    I can't be the only one who can't stand typing `"${arr[@]}"` to get all elements of an array, and the "fi" and "esac" and "done" keywords which all do the same thing but have to be used in different contexts. Might as well have added "rof" and "elihw" to be consistent. The standard is just messy and irksome.

    • @zobayer1
      @zobayer1 2 ปีที่แล้ว +1

      one main problem with this is that you often cannot sudo.

  • @CleverBoy0098
    @CleverBoy0098 ปีที่แล้ว +1

    what do you think about powershell? is worth to learn over bash/zsh ?

  • @Atif1702
    @Atif1702 3 ปีที่แล้ว +9

    Your content is amazing, Eric.
    Please make a video on different state management libraries (Context API, Redux, MobX, Recoil etc...) and which one is better suited in which scenario?
    Thanks

  • @alexnone
    @alexnone ปีที่แล้ว

    Thank you very much i seen this video just in time!

  • @x0vg5hs1
    @x0vg5hs1 26 วันที่ผ่านมา +1

    I use whatever is default.

  • @MannyGraal
    @MannyGraal 2 ปีที่แล้ว +8

    I didn't even know about the variable stuff. Lol I was just using my terminal for updating, CDing into folders and normal things. Also writing neofetch to the end of .bashrc for the neofetch command on start up. Wow, Interesting

    • @EricMurphyxyz
      @EricMurphyxyz  2 ปีที่แล้ว +6

      Yeah, if you don't really do any bash scripting, then fish is probably fine. But just something to keep in mind

    • @aronwomack359
      @aronwomack359 2 ปีที่แล้ว +2

      you can add aliases as well at the end, you can do a lot of things just with nano . bashrc, but appending is better, and I always keep a copy of the config file on an external drive, or a cloud, but that's basically the same idea. I keep a libre office document with all the things like bash, zsh, e.t.c. It has came in handy once or twice. Bash is a very powerful thing if you know how to use it, but I have been using fish, and it has a lot of functions too, but it isn't as fast as the others. Alacrity is the fastest terminal emulator I've used, but I still stick with gnome, but have terminator and others that I use. Bash just has so much info, and support groups, anyone can script If they can copy and paste lol.
      You can run math problems easier in fish too, they're all basically the same, just different for whatever hardware and etc. they just interpret their commands into machine code, just have different functions. But, as always, you can edit bash to do anything you can imagine, just gotta know a little Code. And patience, lot of that.

  • @prashlovessamosa
    @prashlovessamosa ปีที่แล้ว

    Hell yeah that's what I was looking for.

  • @johnnyrosenberg9522
    @johnnyrosenberg9522 6 หลายเดือนก่อน

    I was more curious about the difference in scripting, like which one is fastest, some useful features and so on, but I guess there's some video about that too, somewhere.

  • @zeio-nara
    @zeio-nara ปีที่แล้ว

    Lol fish developers just went and reinvented the wheel. It would be understandable if their approach was more convenient than that in bash it would make sense, but it is less convenient - instead of typing just equals sign you must use the whole command

  • @AGSfeel666
    @AGSfeel666 ปีที่แล้ว +1

    Can I actually use this on a MAC and so changing the behaviour and output?

    • @EricMurphyxyz
      @EricMurphyxyz  ปีที่แล้ว +1

      On MacOS? Of course. But MacOS uses zsh by default.

  • @seanpaul7069
    @seanpaul7069 2 ปีที่แล้ว

    Great content and explanation. I subbed :)

  • @lazarusrize
    @lazarusrize ปีที่แล้ว

    Informative video. Thanks!

  • @jnankin
    @jnankin 2 ปีที่แล้ว

    great video, but also.... drinking game: every time "right here" is said

  • @YankaZabka
    @YankaZabka 2 ปีที่แล้ว

    Thanks for this useful video!

  • @ChozoSR388
    @ChozoSR388 ปีที่แล้ว

    Is there a way to implement some of BASH's little conveniences, like
    echo ${var[^^|,,|~~]}
    into ZSH, instead of having to resort to
    echo "$var" | tr ['[a-z]' '[A-Z]'|'[A-Z]' '[a-z]'|'[A-Za-z]' '[a-zA-Z]']
    every time I want to change case?

  • @vikingthedude
    @vikingthedude ปีที่แล้ว

    So the shell is a TUI that runs CLIs and TUIs inside it?

  • @justrajdeep
    @justrajdeep 2 ปีที่แล้ว +1

    I could not find your zshrc can you please share it?

  • @YERAFirearms
    @YERAFirearms ปีที่แล้ว

    Arr there a fish2bash and bash2fish conversion scripts?

  • @Arsche
    @Arsche ปีที่แล้ว +2

    たしか、ZSHって、MacOS標準のだよね。僕はバッシュが好きだ。FF12のバッシュに憧れるから

    • @kaitlyn__L
      @kaitlyn__L ปีที่แล้ว

      It’s interesting that bash is transliterated into kana but zsh isn’t.
      It makes sense, bash is pronounced as a word while zsh is pronounced like initials.

  • @Miguel_GM
    @Miguel_GM 3 ปีที่แล้ว +1

    Thanks.

  • @tropicalverktaki
    @tropicalverktaki 2 ปีที่แล้ว +1

    Just curious, which font is that? Pretty neat

  •  3 หลายเดือนก่อน

    Where is the "zsh for humans" video that is mentined? TH-cam is not finding it...

  • @0xtz_
    @0xtz_ 2 ปีที่แล้ว +2

    Kali Linux have zsh as a default shell 🐧

    • @EricMurphyxyz
      @EricMurphyxyz  2 ปีที่แล้ว +2

      ZSH as a default shell is pretty good, I have no issues with it

    • @0xtz_
      @0xtz_ 2 ปีที่แล้ว +1

      @@EricMurphyxyz yes try to add OhMyZsh to it 👌

  • @douglasemsantos
    @douglasemsantos 7 หลายเดือนก่อน

    Great video!

  • @trueriver1950
    @trueriver1950 9 หลายเดือนก่อน +2

    Yawn!!! I hoped for the actual differences, not the availability

  • @nickoleiwas
    @nickoleiwas 2 ปีที่แล้ว

    I only know bash.
    Everything is new for me.

    • @haroldcruz8550
      @haroldcruz8550 25 วันที่ผ่านมา

      Aside from curiosity not really worth your time to switch to another as your main shell. You can easily get the features of zsh and fish by using other tools, as far as shell goes, bash is all you need.

  • @vocod3
    @vocod3 2 ปีที่แล้ว

    YO THANK YOU SO MUCH

  • @asdil12
    @asdil12 ปีที่แล้ว

    Anyone knows what terminal font that is?

  • @starpawsy
    @starpawsy 4 หลายเดือนก่อน

    And none of them measure up to the Korn shell. AT&T forever !!! LOL.

  • @PeiDeur-w9z
    @PeiDeur-w9z หลายเดือนก่อน

    Kayley Plain

  • @fatcat3513
    @fatcat3513 2 หลายเดือนก่อน

    Play settings : speed 1.75x problem solved🎉

  • @SpenderChad-q8w
    @SpenderChad-q8w หลายเดือนก่อน

    Ladarius Shoal

  • @NoONE-bk7ud
    @NoONE-bk7ud 3 หลายเดือนก่อน

    fish has everything i need

  • @zer0nool442
    @zer0nool442 11 หลายเดือนก่อน

    zsh is just superior. Unarguable.

  • @StevenLewis-j3e
    @StevenLewis-j3e 2 หลายเดือนก่อน

    Wilhelm Stravenue

  • @4ortson
    @4ortson 9 วันที่ผ่านมา

    zsh for humans is very nice

  • @FredLockamy-w9f
    @FredLockamy-w9f 2 หลายเดือนก่อน

    Keebler Plain

  • @KelleyHaley-y7z
    @KelleyHaley-y7z หลายเดือนก่อน

    Boyer Glens

  • @oitan
    @oitan 6 หลายเดือนก่อน

    now i get it. thanks

  • @RobertBrown-i8s
    @RobertBrown-i8s 2 หลายเดือนก่อน

    Hayley Forges

  • @RamonDrew-d5m
    @RamonDrew-d5m หลายเดือนก่อน

    Ebert Locks

  • @jullien191
    @jullien191 6 หลายเดือนก่อน

    Muy bien amigo. Estoy con bash

  • @gforce2924
    @gforce2924 2 ปีที่แล้ว

    Great vid

  • @HumeAdair-r2p
    @HumeAdair-r2p หลายเดือนก่อน

    Sheridan Keys

  • @GenePlummer-u7d
    @GenePlummer-u7d 2 หลายเดือนก่อน

    Christelle Extension

  • @WillisNapenas-i2g
    @WillisNapenas-i2g 2 หลายเดือนก่อน

    Deborah Mountains

  • @HaggaiDominic-p5j
    @HaggaiDominic-p5j 2 หลายเดือนก่อน

    Mitchell Flats

  • @JsiJssu-g6l
    @JsiJssu-g6l หลายเดือนก่อน

    Fritsch Throughway

  • @LynwoodSandlan-f1h
    @LynwoodSandlan-f1h 2 หลายเดือนก่อน

    Roberts Prairie

  • @DarellFalchi-x9w
    @DarellFalchi-x9w 2 หลายเดือนก่อน

    Kelley Alley

  • @zoefumdajacobson7105
    @zoefumdajacobson7105 หลายเดือนก่อน

    Darryl Inlet

  • @ZimmermanCarl-y7j
    @ZimmermanCarl-y7j หลายเดือนก่อน

    Shyanne Lights

  • @AmosZangger-u9h
    @AmosZangger-u9h หลายเดือนก่อน

    Rippin Highway

  • @DraconToupal-x5c
    @DraconToupal-x5c หลายเดือนก่อน

    Thiel Lodge

  • @ChristieValentine-j4h
    @ChristieValentine-j4h หลายเดือนก่อน

    Jackeline Overpass

  • @m.jamilrahman4971
    @m.jamilrahman4971 11 หลายเดือนก่อน

    I use fish + starship, yeah i'm lazy 🤣

  • @DavidParathyras
    @DavidParathyras 2 ปีที่แล้ว +3

    Thanks for clearing out the difference between zsh/bash and fish!
    Fish sucks imo... Raise traditional bash!

    • @navjotsingh2251
      @navjotsingh2251 2 ปีที่แล้ว

      Fish is good for the normal user. Zsh/bash are for people who write proper shell programs or just do other advanced things

  • @KimberliCoufal-r4o
    @KimberliCoufal-r4o หลายเดือนก่อน

    Mose Underpass

  • @RichardSchwartzberg-s9j
    @RichardSchwartzberg-s9j หลายเดือนก่อน

    Collier Tunnel

  • @GilbertLance-z3z
    @GilbertLance-z3z หลายเดือนก่อน

    Emmerich Crest

  • @RobBaird-f5t
    @RobBaird-f5t หลายเดือนก่อน

    Crist Springs

  • @RobertAllen-r6u
    @RobertAllen-r6u หลายเดือนก่อน

    Lindgren Knoll

  • @TommyDon-h8d
    @TommyDon-h8d หลายเดือนก่อน

    Bergnaum Mission

  • @DorianSendro-l5v
    @DorianSendro-l5v หลายเดือนก่อน

    Elenor Trafficway

  • @rumblef1sh
    @rumblef1sh 2 ปีที่แล้ว +3

    I've only just found your channel and am, like others, really enjoying your interesting and well presented content. But (and meant as a kind criticism intended to be helpful) do you think you could perhaps try to avoid saying everything two or three times? You have a tendency to explain something, and then explain it again using slightly different words. I think we got it the first time :)

  • @BrendaRita-s9q
    @BrendaRita-s9q 2 หลายเดือนก่อน

    Leannon Inlet

  • @LindsayRory-f8b
    @LindsayRory-f8b หลายเดือนก่อน

    Ernestine Street