Linux Crash Course - The cut Command

Sdílet
Vložit
  • čas přidán 8. 09. 2024

Komentáře • 24

  • @ArniesTech
    @ArniesTech Před rokem +13

    Absolutely love these crash courses 🙏

  • @mengye8871
    @mengye8871 Před rokem +1

    Thanks!!! I have never thought that "cut" could be so interesting

  • @12Q46HPRN
    @12Q46HPRN Před rokem +2

    OMG! I came here for you to teach me Windoze!!!! (j/k)
    Great video as always, Jay. "Do one thing and do it well," and you have done it again with explaining the cut command. Thank you.

  • @javabeanz8549
    @javabeanz8549 Před rokem +1

    Jay you learned me some new stuff! I have used the cut command many times, but always for fields, I didn't know that character and byte were options.

  • @georgewaring7168
    @georgewaring7168 Před rokem +4

    Great tutorial as always. Thanks Jay

  • @samoylov1973
    @samoylov1973 Před rokem

    cut -b 7-11,56-61 message.txt
    you could do without additional number and comma in an example at 8 minute mark 🙂

  • @catupeloco
    @catupeloco Před rokem +3

    Maybe you could show
    sort and column commands
    For the next chapter

  • @BrianThomas
    @BrianThomas Před rokem

    Hi Jay! I've been a subscriber to your channel for a while now, and I know you've mentioned CEPH a few times in the past. I was wondering if you have plans to do a training video on CEPH in the future? I just attended an amazing CEPH presentation, and it has ignited my interest in the technology. I'm now super excited about it. Your video series has been incredibly helpful for me in learning, and I would love to add CEPH to my HA Proxmox cluster that you helped me to build by the way. Please let us know when you have time. I absolutely love your channel, and you are a phenomenal teacher. Keep up the fantastic work!

  • @akindayoakinlabi76
    @akindayoakinlabi76 Před 11 měsíci

    Very great video, I must subscribe.
    I know the cut command, just wish to see something new that I didn't know, like I would have love to see how you will use the command for just one line on /etc/passwd
    🙂

  • @tolstoievski4926
    @tolstoievski4926 Před rokem

    Thank you, very instructive.

  • @kencreten7308
    @kencreten7308 Před rokem +1

    I don't want to be negative here, but I've used the cut command a lot.... bad joke... heh Great video.

  • @ABDULKARIMHOMAIDI
    @ABDULKARIMHOMAIDI Před 9 měsíci

    THANKS

  • @cybersecurity324
    @cybersecurity324 Před rokem

    Thank you so much for your help.

  • @fsxspen
    @fsxspen Před rokem

    You should make a video on the lsof command, I noticed it wasn’t listed in your book either.

  • @verynice5258
    @verynice5258 Před rokem

    Thank you

  • @karthikeyans9346
    @karthikeyans9346 Před rokem

    How to use tail command and cut using pipe.Where I can leave the header from file

  • @advancewebdevelopment9802

    Can you help me to follow complete Linux course

  • @lainerdonet
    @lainerdonet Před rokem

    Greattings . I used "cut -d " " -f 9,2 message.txt" and the prompt output was "Linux Wow!" instead of "Wow! Linux". How I can chance the order of output?

    • @SlideRSB
      @SlideRSB Před rokem

      You can't change the order with the cut command. You would need to use awk to do that.

  • @ZubairKhan-vs8fe
    @ZubairKhan-vs8fe Před rokem

    Please can somebody explain why Linux still uses Microsoft DOS type commands. Is it still necessary to know these command line when there are graphical user interfaces?

    • @catupeloco
      @catupeloco Před rokem +2

      Your point is only valid for desktop. Usually servers dont have GUI. Their only connection available is through ssh which is command line only.
      You can still use GUI but is not the Best
      Also usually GUI doesnt support all the options available on parameters.
      And last but not least, automatization is only possible through command line by scripts

    • @mengye8871
      @mengye8871 Před rokem +1

      Software developers often work only in the terminal emulator and Servers often doesn't have GUI. Btw also the windows server doesn't have a GUI, so you have to user CMD or Powershell

    • @4X6GP
      @4X6GP Před rokem +1

      Very often the command line functions are more powerful and more efficient than using the graphical interface.