Fish Shell Tips and Tricks (Can Your Shell Do This?)

Поділитися
Вставка
  • Опубліковано 23 гру 2024

КОМЕНТАРІ • 149

  • @atlantic_love
    @atlantic_love 5 місяців тому +6

    What I love about this guy is that he is respectful toward technologies that he isn't using or supports, and gets on to the point of his talks.

  • @jcwl70
    @jcwl70 2 роки тому +74

    00:00 Intro
    01:57 built in functions
    02:51 count built in function
    03:18 math built in function (BTW you can also scape the * when running multiplication math function: math 2\*3 an it works as expected )
    04:40 random built in function
    05:20 prevd and nextd built in functions
    06:20 keybindings for prevd and nextd built in functions (tldr; Alt+→ and Alt+← )
    07:32 keybinding for ls built in function (tldr; Alt + l )
    08:21 keybinding for pager (tldr; Alt + p )
    09:57 keybinding for what does that command do? (tldr; Alt + w)
    10:58 keybinding to open your $EDITOR (tldr; Alt + e )
    12:10 keybinding for forgetting previous sudo command. You know, sudo make me a sandwich :) (tldr; Alt + s )
    13:00 Epilogue
    13:57 Thanks Patreons!!
    And yes I also love fish since many years ago!! And I miss its features when I login in systems with bash shell... :)

  • @keethums
    @keethums 2 роки тому +77

    He’s gone Pescatarian I see.

    • @DistroTube
      @DistroTube  2 роки тому +25

      I think I visited a Pescatarian Church once. Nice people. ;)

    • @tailsorange2872
      @tailsorange2872 2 роки тому +5

      @@DistroTube be sure to eat Fish and Chips on stream during your monthly streams :)
      Here's my situation for my Compaq Presario V2000 -> My old CPU has decided to kick the bucket.... And I am in the midst of acquiring a 64 bit cpu for Tresquel Linux. I have the broadcom Wlan/ bluetooth card that has FOSS compatible firmware (openfwwf)....... Can't wait to do a Tresquel/ OpenBox/ Tint2/ feh, etc combi...... for my compaq.
      (I went from Debian on openbox to Alpine linux on Openbox.... and now that )

  • @PressThatButton
    @PressThatButton 2 роки тому +17

    I love the fish shell since starting to use it a few months ago. I didn’t realize a lot of these tips and tricks. This is awesome.

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

    I like both for different reasons, yet Fish's math builtin works quite like expr in Bash ;)
    Fish: math 2 + 2 # 4
    Bash: expr 2 + 2 # 4
    Bash: expr 2 \* 2 # Just escape the * for multiplication
    expr just needs space around the operator, 2 + 2 instead of 2+2

    • @ficolas2
      @ficolas2 4 місяці тому

      Expr is a bit too strict with its syntax, its annoying.
      Also, imo, where math shines, as programmers is that you can do hex math
      math -b 16 '2 + 10 + 0xF'
      (the quotes arent needed)
      With bash, you'd need to use printf to turn the number to hex, and $((0x__)) to use the hex literal
      printf '%x
      ' $(expr 2 + 10 + $((0xF)))
      Thats ugly as shit, and not easy to remember compared to how simple the fish command is

  • @valerioboz5410
    @valerioboz5410 2 роки тому +4

    (It has been 6 years since I logged onto UA-cam to leave a comment.)
    Wow. Thank you. Congratulations on your work, congratulations on the CC-BY choice of this video, and I wish you a lot of good things. Finally I'm not POSIX compliant but I'm more happy.

  • @zenitsu2989
    @zenitsu2989 2 роки тому +12

    I've been using fish since last year, thanks to your videos! fish + starship = beyond best.

  • @MasterHigure
    @MasterHigure 2 роки тому +3

    If you write the name of a command and alt-up, it will add the arguments of your previous command to the one you're currently writing (say you ls a directory, and then want to cd there, or you cat or less a file and then want to vim or emacs it).
    And if you have started to write a command and only want part of the autocomplete, alt-right has you covered.
    Alt-delete and alt-backspace to delete word-by-word rather than character-by-character (what is often ctrl-backspace and ctrl-delete in many text editors).
    And, of course, the regular up-arrow history scrolling filters by what you have already written.

  • @QuotePilgrim
    @QuotePilgrim 2 роки тому +6

    Fish looked pretty interesting, so I tried it out and set as my shell for a bit... then I started rewriting one of my bash scripts as a fish script, and it was an absolute pain. I gave up when I realized that there was no way to make associative arrays, short of implementing them from scratch. There was also the issue that you need use the math command to do something as simple as incrementing a variable, so something like "((x+=1))" becomes "set x (math $x + 1)", which works, but come on, seriously?
    My whole experience before I finally gave up rewriting the script was that a lot of things were unnecessarily verbose like that. Granted, I probably would have finished rewriting the script if at the very least fish had associative arrays, but so many lines became about twice as long, and without being that much more readable (when it wasn't less readable), that I would probably have decided it's not a good language to write scripts in anyway.
    Also, just to make this very clear: I absolutely need my interactive shell to have the same, or the very least very close syntax to the scripts I write. I do not want to type "x=1" when writing a script, but "set x 1" when using an interactive shell, nor do I want to have to use "$(command)" in scripts, but "(command)" in the shell, and so on and so forth. I want to do things the same way in both cases, which is why I use zsh, so I can have some of the nice features fish has, and write my scripts either in bash or as POSIX-compliant scripts. There are a lot less differences to worry about.

    • @haomingli6175
      @haomingli6175 2 роки тому +1

      fish is much faster than zsh if you install all the plugins that make zsh fish-like; fish shows the prompt instantaneously, while zsh takes a visible fraction of a second

    • @QuotePilgrim
      @QuotePilgrim 2 роки тому +2

      @@haomingli6175 Thing is I have no use for most things fish does, and zsh is more than fast enough for me.
      Regardless, speed is just not that important of a factor for me, it is well behind things like syntax and features like associative arrays and parameter expansion. "for f in *.md; do mv $f ${f%.md}.txt; done" is not something you can do in fish. I'm sure there are ways to achieve the same result, but the point is I don't want to do it any other way, I want to use this exact syntax, any other is unacceptable to me.
      In all seriousness, the fact that I have to type "set x 1" instead of "x=1" is more than enough reason for me to not even consider switching to fish. Yes, I am that petty.

    • @michaelcarnevale5620
      @michaelcarnevale5620 2 роки тому +1

      @@QuotePilgrim ya i use fish cuz i like the simple config setup but i agree that the POSIX compatibility issue can be a dealbreaker

  • @gabrielalvescunha9405
    @gabrielalvescunha9405 2 роки тому +3

    Man, the prevd and nextd keybindings made my morning :D. The Alt+s is also noice!

  • @praetorxyn
    @praetorxyn 2 роки тому +8

    Fish is the only shell that supports XDG properly. ZSH has ZDOTDIR, but you either have to create an extra dotfile (~/.profile, ~/.zshenv) or edit a system file (/etc/profile) to set it before the shell loads, which largely defeats the purpose of trying to force XDG compliance. Bash doesn't support XDG at all.

    • @mk72v2oq
      @mk72v2oq 2 роки тому

      Zsh has its own system-wide /etc/zsh/zshenv. But yeah, automatic XDG would've been nice.
      Btw DT has a video against XDG.

    • @praetorxyn
      @praetorxyn 2 роки тому

      @@mk72v2oq Either way. Managing system file changes is not really a supported paradigm the way most people manage dotfiles. It’s something that has to be done manually or scripted, and is thus a pain in the ass fish doesn’t come with.

    • @mk72v2oq
      @mk72v2oq 2 роки тому +2

      @@praetorxyn out-of-the-box XDG is better, but zsh is about configs anyway. Fish is essentially zsh + proper config.

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

    The nice to haves like directory switching and autocomplete have been fantastic for me but the sudo trick is truly amazing.

  • @driden1987
    @driden1987 2 роки тому +10

    Been meaning to try fish, but I'm also switching over to emacs, and that's killing all the "learning" time I have lately.
    A look at NU shell, by JT, would be awesome aswell. He demoed a couple of times and it really brings new stuff to the terminal

  • @AngelIliikov
    @AngelIliikov 2 роки тому +4

    Thanks for the tips DT! About the math problem with the wildcard - the standard way, at least from my understanding is to escape those characters. So math 2\*3 works as expected.

  • @soanvig
    @soanvig 2 роки тому

    I love you so much for these tips. I was using fish without knowing prevd, nextd and especially shortcuts for these and other (like sudo) commands. My life will be so much better now. I think fish should advertise those shortcuts more.

  • @jhonaker76
    @jhonaker76 2 роки тому

    zsh used to be my favorite back in early 2000s. I haven’t run Linux for over a decade, but glad to hear it’s still around.

  • @falkens_maze
    @falkens_maze 2 роки тому +4

    System scripts aren't necessarily written in Bash. I know on Arch you can change it to Dash (for performance reasons). I think they are written in a low level POSIX compliant way so any shell works.

    • @39zack
      @39zack Рік тому

      But Fish is not 100% POSIX compliant (on purpose)

  • @TheLazyJAK
    @TheLazyJAK 2 роки тому +4

    I was comparing exa and lsd today. An in depth video on them both would be great! I preferred lsd personally but you can make them relatively identical

    • @owainharris
      @owainharris 2 роки тому +5

      I prefer mushrooms

    • @coffeedude
      @coffeedude 2 роки тому +1

      @@owainharris It depends on the ocassion

    • @TheLazyJAK
      @TheLazyJAK 2 роки тому +1

      @@owainharris lmao

  • @j_atkinson
    @j_atkinson 2 роки тому +1

    Thanks for the tips! I've been using fish for quite some time along with oh my fish, but I haven't taken a deep dive into the shortcut keys yet.

  • @irlshrek
    @irlshrek 2 роки тому

    Yeah I can't imagine going back to bash after fish. It's like going back in time but in a bad way. And you're the reason I use fish! So thank you!

  • @WayneLansdowne
    @WayneLansdowne 2 роки тому +1

    Maybe I missed it, but what theme is being used for Fish? I really like it. Are there any other customizations done to it?

  • @JakeLinux
    @JakeLinux 2 роки тому +4

    I tried both fish and zsh for a while, then I realized I have no need for an extra shell on my system, bash is amazing all on its own. A few little modifications to suit my needs and it is good to go.

    • @occultsupport
      @occultsupport Місяць тому +1

      what about the syntax highlighting? isn't that a pain to live without?

    • @JakeLinux
      @JakeLinux Місяць тому

      @occultsupport not at all, syntax highlighting is nice but not having it is not a deal breaker for me.

  • @kasroudra5542
    @kasroudra5542 2 роки тому +2

    Fish is so awesome out of the box that I use it in both my android and ubuntu. The omf framework also made it nicely customizable

  • @DavidHathaway
    @DavidHathaway 2 роки тому +1

    Like others, I have been using Fish since you highlighted it, but I didn't know these keybindings. The prevd/nextd bindings will revolutionize this for me. Thanks!

  • @ash1kh
    @ash1kh 2 роки тому

    I am pretty happy with fish shell and made it my system default because I know i can pretty much run any bash command with bass and replay, the main problem for me was forgetting sudo, and was thinking to make some kind of alias or function that can mimic the bash style "sudo!" to run previous command with sudo priviledge. For a whole year suffered for it. now alt s, man you are my hero..

  • @MattMcCullough
    @MattMcCullough 2 роки тому +2

    Fish is my go to shell

  • @LordHonkInc
    @LordHonkInc 2 роки тому +1

    I love the fish shell, even if I have some gripes with it (all of which are circumventable, but they're just pet peeves, y'know) it still has so many creature comforts that I miss with other shells, like the mentioned history-searching autocomplete, or the mode indicator for vi bindings, small stuff like that.

  • @syrefaen
    @syrefaen 2 роки тому +12

    Nice, really cool to learn shortcuts even tho Ive used fish for some years I did not know. Maybe new users should be aware of fish_config command. You can set a theme there an various 'config parameters in a webgui '. Set your favorite terminal to launch fish, and keep the !#/bin/bash in the scripts, not bin/sh and everything will be fine.

  • @jozsefk9
    @jozsefk9 2 роки тому +1

    My favourite shell. Using it for few years now

  • @mcw1593
    @mcw1593 4 місяці тому

    I use emacs all day at a large tech company and I do it in the terminal. No GUI active. Yes, it has both modes these days.

  • @xc13z829
    @xc13z829 2 роки тому

    I've been wondering about scripting and shells. If I'm the only one using the script, why suffer through googling for the hundredth time how to get some obscure bashism to work? Why not just script with fish and be happy? I wrote hundreds of scripts on MacOS in zsh, the world didn't come to an end. And installing fish on most distros is easy-peasy. Sooooo.... fish scripting it shall be unless there is a good reason to avoid. Thanks DT for a great video!!

  • @_BLANK_BLANK
    @_BLANK_BLANK 2 місяці тому

    Yeah. Using fish for the Interactive shell, and bash for my default is what I do. It's perfect for me.
    I actually have a set up where I set fish as the shell for my main terminal (kitty) then I have a second one with bash like normal (right now st, but in the past alacritty)

  • @pewolo
    @pewolo 2 роки тому

    The Bourne Again Shell (Bash) is the best ever and I love it.

  • @umop3plsdn
    @umop3plsdn 2 роки тому +5

    I used bash for over 20 years... I knew other shells existed but never really paid it any mind which is crazy cuz I spend literally 90% of my time in a shell. I switched over to zsh and my mind was blown i stayed for like a year or two and kept hearing how fish was kinda like it in some ways so I was like hell i'll give it a shot. I CANNNNNNOT LIVE WITHOUT FISH lolol fish > *

    • @mk72v2oq
      @mk72v2oq 2 роки тому

      Zsh with some additions easily make fish obsolete.

    • @tiagok1842
      @tiagok1842 2 роки тому

      @@mk72v2oq What would some of those additions be?

    • @mk72v2oq
      @mk72v2oq 2 роки тому +1

      @@tiagok1842 grml-zsh-config + zsh-autosuggestions + zsh-syntax-highlighting

    • @Tragicomedy2137
      @Tragicomedy2137 9 місяців тому

      ​@@mk72v2oqzsh with those additions is slow, painful to maintain and shit to use Frankenstein's monster.

  • @polyglotusamericanus4163
    @polyglotusamericanus4163 2 роки тому +4

    GhostBSD uses fish by default for the user shell.

  • @Kritiqual
    @Kritiqual 2 роки тому +1

    Hey dt, can you make a review on wezterm? It is written in rust and config is in lua and has many builtin feature

  • @methamphetamememcmeth3422
    @methamphetamememcmeth3422 2 роки тому

    I think the abbreviation function is neat as well. I prefer it to aliases because it will always print the original command to the terminal.

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

    How do you change your termianl prompt's to ">"?

  • @mk72v2oq
    @mk72v2oq 2 роки тому +5

    Idk, zsh can be configured to do all the fish does and even more. In fact you don't even need to write configs manually, just install 'zsh + grml-zsh-config + zsh-autosuggestions + zsh-syntax-highlighting' and this setup makes fish obsolete. Not saying that you can configure any keybinding to do anything. Configurability and extensibility of zsh is effectively limitless.

    • @JrIcify
      @JrIcify 2 роки тому +1

      I don't like messing around with configs and plugins very much although I did use tricked out zsh for a while, and my takeaway was that it's for developers who are actively programming while using it. Using it in everyday life felt more forced to me as time went on while fish felt natural pretty much immediately.

    • @Tragicomedy2137
      @Tragicomedy2137 9 місяців тому

      It's an old comment, but whatever. Zsh is incredibly slow and even with plugins it doesn't do what fish does out-of-the-box. Zsh-syntax-highlighting didn't even worked for me without p10k.
      Fish is faster, have better syntax and have a lot of features already built-in. Just the reality

  • @shriram5494
    @shriram5494 2 роки тому

    Is piping cat to less any different from passing the file as an argument to less?

  • @redinetyas1552
    @redinetyas1552 2 роки тому

    those keybindings are great thanks for tell us.

  • @smitty.c
    @smitty.c Рік тому

    how can i get my command line text to be colored like that? i dont mean the prompt

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

    Fish looks and feels amazing but I have found some bugs and also, I cannot get to properly set VIM keybinding and and Cursor styles in different modes.

  • @Skyler9604
    @Skyler9604 2 роки тому

    Hey DT, would love to see a video on using bash getopts.

  • @prayingmantis86
    @prayingmantis86 2 роки тому

    Nice vid. What font is that in the terminal?

  • @stevenbacon3878
    @stevenbacon3878 2 роки тому

    Thanks for making this video, fish is awesome!!

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

    Great content man,

  • @gokul2003g
    @gokul2003g 2 роки тому

    12:46 fish doesn't have sudo !!
    Now I know why and the workaround.

  • @n5ifi
    @n5ifi 4 місяці тому

    I think fish or zsh is a great idea for a newb. It's quite important to learn the terminal or at least a termianl that can help you. I wish I had had someone tell me this.

  • @iodreamify
    @iodreamify 2 роки тому

    Very nice highlight of the things which are important to an end user. The only thing i'm wondering about is what happens when you execute a script written in bash while running fish. Is it completely incompatible or will it launch bash temporarily?

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

      Incompatible. You can always /bin/bash before running it of you really need to run it.

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

    Thank you, had no clue what fish was but kept seeing it sys tools, like so many other apps. Totally unrelated question about running a communication app ie. whats app, in a secured isolated sandbox, running garuda lxqt kwin. Someone keeps sending me a link to connect on whats app but I'm afraid of the security risks of running that app on my
    build & I really want to communicate with this person re: current journalism.

  • @metalnwood
    @metalnwood 2 роки тому

    For math, you can also just quote the whole line to make it easier - especially if you had * more than once, e.g. ~>math "55*(9*17)+8"

  • @amerikraine3401
    @amerikraine3401 2 роки тому

    Hey dt do you have your config for fish shell? It looks good I'd like to try it

  • @ironmanlifts
    @ironmanlifts 2 роки тому

    Hey DT why are you still using 'cd' ? I move around my entire file system with 3 letters thanks to zoxide.

  • @nafg613
    @nafg613 2 роки тому +3

    Fish is an even bigger win for scripting than for interactive

  • @leviticus8930
    @leviticus8930 2 роки тому +5

    Fork the Fish Shell, put your spin on it, and call it "Dish". Winning...

    • @tailsorange2872
      @tailsorange2872 2 роки тому +2

      no no, call it "Chips" instead - then we'll have "Fish" and "Chips" 😄

  • @Little-bird-told-me
    @Little-bird-told-me 2 роки тому

    i have moved to fish after watching this video. I had no clue as the difference between an interactive shell and system shell

  • @Neucher
    @Neucher 2 роки тому +2

    Underrated use case for fish: Devices with touchscreen be it android, postmarketos or a Surface device

    • @alterego157
      @alterego157 2 роки тому

      All 5 of them

    • @Neucher
      @Neucher 2 роки тому

      @@alterego157 ?

    • @coffeedude
      @coffeedude 2 роки тому

      @@Neucher how do you use a shell on android?

  • @elabeddhahbi3301
    @elabeddhahbi3301 2 роки тому

    anyone know how to write on more than one monitor in dtos sometime I open more than one server and I wanna type the same command

  • @Cuissedemouche
    @Cuissedemouche 2 роки тому

    I love fish and using it, but I wouldn't put it on default.
    When new users are lost, they'll look/ask for help and they'll have command that are sometimes not compatible with fish.

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

    If you want to save yourself the trouble of installing exa and setting up a custom ls alias for it, try typing "la" or "ll" into a vanilla fish shell :)

  • @SgtElev3n
    @SgtElev3n 2 роки тому +4

    This video should have been titled fish and tips

  • @champfisk5613
    @champfisk5613 2 роки тому

    Well many people probably script on the fly in the interactive to make sure it works. Fish is cool, be it it can be obnoxious due to the non posix compliance

  • @maxifittipaldi9843
    @maxifittipaldi9843 2 роки тому

    Very useful, thanks so much!

  • @jellyfp
    @jellyfp 2 роки тому

    Been using fish shell ever since I started using linux! Only gripe I have is how it's not compatible with bash scripts

    • @Paul-vi3on
      @Paul-vi3on 2 роки тому

      But that doesn't matter much; any (good) script should be prefaced with the correct #!-shebang anyway (indicating with which shell to run it). I think if the shebang is missing entirely, fish even assumes it's written in bash.
      So as long as you don't plan to completely uninstall Bash from your system (**don't**), or write scripts in Fish for other people, you won't have any problems.

  • @rochr4
    @rochr4 2 роки тому

    for now I launch fish to exploer a new command, got so many prosthetics in bash already that it's not much appealing ;)

  • @randomname2437
    @randomname2437 2 роки тому

    alias --save is my favorite

  • @anon_y_mousse
    @anon_y_mousse 2 роки тому

    I see that you use --color=always, and I wonder if you find that it interferes with piping to other commands? Less is generally fine with colors for me because I can just -r it, but if I'm grepping for something it gets a bit wonky. Also, I like the way bash does math better, $(()) and everything in between is interpreted as just math operations, complete with variables, and if a wildcard doesn't match on the command line it just accepts it as a plain string instead of throwing an error.

  • @martinhertz4957
    @martinhertz4957 2 роки тому

    Fish is cool. Personally I'd rather include the fish features I want, into the more powerful zsh, which if wanted can do all and more, but to each his own.

  • @NickyDekker89
    @NickyDekker89 7 місяців тому

    Kali also comes with Zsh out of the box.

  • @coffeedude
    @coffeedude 2 роки тому

    I haven't watched the video all the way through but I think my shell can do all that stuff. I will come back to confirm tho

  • @joffreybluthe7906
    @joffreybluthe7906 2 роки тому

    For the math function you can also escape the * with \ (e.g. math 2\*3) but I'll admit that it's still a bit clunky :)

  • @taragwendolyn
    @taragwendolyn 2 роки тому

    fish + thefuck. love 'em both, and have 'em on any system I set up now.

  • @wisnoskij
    @wisnoskij 2 роки тому

    I feel like most of the features of the special shells really should just be terminal emulator features. People dont really want Fish the language, they just want autocomplete.

  • @d3j4v00
    @d3j4v00 2 роки тому

    Since I've found fish I've put it on all my Macs

  • @Little-bird-told-me
    @Little-bird-told-me Рік тому

    You can type $EDITOR to open the default editor in fish.

  • @sumirandahal76
    @sumirandahal76 2 роки тому

    Hey DT, how's openSUSE tumbleweed ?

  • @AndersJackson
    @AndersJackson 2 роки тому

    I used Emacs a user shell, but that wasn't that great experience, as many scripts back then didn't have the hash-bang line in the beginning. 🙂😎

  • @rijothomas5478
    @rijothomas5478 2 роки тому +1

    Best thing is you don't has to 'cd' everytime. 😁

  • @mrcat9697
    @mrcat9697 2 роки тому

    the only reason I watch DT is "Let me switch over to my desktop"

  • @amynagtegaal6941
    @amynagtegaal6941 2 роки тому +1

    Fish has a lot of stuff by defautl but everything fish can zsh and bash can too but it requires a lot of effort with bash and with zsh actually not that much

  • @thingsiplay
    @thingsiplay 2 роки тому

    The default shell on Linux is /bin/sh

    • @DistroTube
      @DistroTube  2 роки тому +2

      /bin/sh isn't an actual shell. /bin/sh is just a symlink to your system's default shell...which is Bash on almost every Linux distro (Ubuntu uses Dash for its system shell).

    • @thingsiplay
      @thingsiplay 2 роки тому

      @@DistroTube I know, it was a joke because one of your older videos talking exactly about this.^^ I have set it to Dash.

  • @PranavBhattarai
    @PranavBhattarai 2 роки тому

    Alt S ------------>> amazing

  • @theodorealenas3171
    @theodorealenas3171 2 роки тому

    His mind is a just in time compiler I swear. He compiles new information into teaching material on the fly. He learned it? He taught it. I can't do that.

  • @jaimesotelo4252
    @jaimesotelo4252 2 роки тому

    As always nothing that isn’t already possible in bash. The prevd feature is nice, though. And would require some scripting to implement in bash. Anyway no killer feature that could convince a well educated bash user.

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

    Amen to fish!

  • @nevoyu
    @nevoyu 2 роки тому +3

    I use fish shell scripts for my d&d campaign, lmao

  • @BorosBlake
    @BorosBlake 2 роки тому

    Hey guys! How can someone contact DT other than Patreon ? I some problem wasnts featured yet.. Would be good to have a solution cuz the ArchWiki information not helped, but have to be a way to make it work...
    Thinkpad WWAN card to work with 4G LTE build in modem. SIM card is in, but the qualcom or which driver worked perfectly under Win10, now not wanna work under Arch.. Anyone had similar problem?

  • @jackt-z2m
    @jackt-z2m 2 роки тому +3

    Second (Maybe)

  • @jocadbz
    @jocadbz 2 роки тому

    My shell indeed does that. I use Fish btw

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

    fish + tillix is boss

  • @eduardpopescu9109
    @eduardpopescu9109 2 роки тому

    try typing 'fish_config' in your fish shell...see what happens

  • @nafg613
    @nafg613 2 роки тому

    Builtins are not the same thing as functions

  • @gogogogogogogogogogog9
    @gogogogogogogogogogog9 2 роки тому

    best shell is ash

  • @NimXD
    @NimXD 2 роки тому

    I must try the 0/0 and see my distro crash and burn

  • @rashie
    @rashie 2 роки тому

    👍👍

  • @lightprogrammer
    @lightprogrammer 2 роки тому

    Are you pulling our leg?

  • @ao1pointblank
    @ao1pointblank 2 роки тому

    I think I prefer the keybinds for zsh a bit more

  • @amerikraine3401
    @amerikraine3401 2 роки тому +1

    Fish is too slow , it drives me crazy. I tried to force myself away from bash but I cant

  • @itsfish8672
    @itsfish8672 2 роки тому

    GVDT.