5 Terminal Aliases Every Developer Needs To Know!

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

КОМЕНТАРІ • 14

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

    it's recommended that you use a separate file for your aliases
    instead of adding them to your user bashrc or zshrc file
    then this file is sourced everytime you start a new session
    for this reason default bashrcs usually have a block like this
    if [ -f ~/.bash_aliases ]; then
    . ~/.bash_aliases
    fi
    /$user/.bash_aliases being the suggested file for aliases
    you could then extend this with another file for functions

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

      Yep this is the way. Wanted to keep it simple and short but thank you for adding this for others to read and learn.

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

      Rather good idea, thanks for sharing. Someone needs to make a quick video on it 👍

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

    1:27 - My new Mac doesn't have a ~/.bashrc or ~/.zshrc file, why not?

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

    Hey Travis! Love the video, gotta ask, what assistant was that in the beginning? Looks cool and helpful

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

      Thanks. It’s called Voila. I have a video dropping November 19 about it and how to get it for a low one time fee. But that deal isn’t live yet. Stay tuned.

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

    Hi Travis, Would you kindly consider upgrading the course titled 'Bike Rental App'? Thenks

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

    Can we setup password variables with allies

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

    Nice, tyvm

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

    you forgot to mention that function accepts parameters. For silly example, printing first line from a file and changing each word to X:
    h1() { head -1 "$1" | sed 's/\w/X/g' ; }
    using:
    h1 file1.txt
    h1 file2.txt
    there is a pipe inside a function and this is impossible to make it work with only aliases because they are only simple abbreviations and you can't inject something into an alias. Function let you put parameter at any position.

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

    and then you forget all the original commands :)

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

    No xoide or z jumper huh?! 😊

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

    This is great

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

    Mac 👀