The Command Line in 60 Seconds 👩‍💻

Пікірлер: 110

  • @blankuser48
    @blankuser487 ай бұрын

    sudo rm -rf /bin is my favorite

  • @notorious3875

    @notorious3875

    5 ай бұрын

    Yo my pc is not booting

  • @narasimha6470

    @narasimha6470

    4 ай бұрын

    ​@@notorious3875😂

  • @potarto-man

    @potarto-man

    4 ай бұрын

    Nahhh that is such a convincing trick. Even as someone who knows what that is it took me a second to realise 😂

  • @plashe9041

    @plashe9041

    4 ай бұрын

    i was working on a script once and tested something out and when deleting the test files i accidentally ran "sudo rm -rf *" in my home directory lol

  • @Trolleybus__Driver
    @Trolleybus__Driver9 ай бұрын

    "shutdown" is my favorite

  • @kaurt9954

    @kaurt9954

    8 ай бұрын

    "poweroff"

  • @FabS0ag

    @FabS0ag

    3 ай бұрын

    -h now

  • @somefishhere
    @somefishhere Жыл бұрын

    Fun short! Warp is great. Just fyi for any watchers, trash is a great brew formulae that moves folders and files to the Trash. Great alternative to rm -r.

  • @biscuitsofdeath
    @biscuitsofdeath11 ай бұрын

    So true. I met someone who was able to use vim to edit data that was pasted into the terminal. This video reminds me I need to be better at grep and pipes

  • @mage3690

    @mage3690

    9 ай бұрын

    I once managed to open nano with the contents of the terminal line I was working on already in the buffer. I still have no idea how that happened, I was fumbling around for the shift key and hit a control key. But if all you want to to is copy-paste something into vim, ctrl + shift + v in insert mode will get the job done. Or `cat '' >> file.txt; vim file.txt`, if for some reason ctrl + shift + v in insert mode is somehow a thing enabled by a line in the root vimrc that came with my distro.

  • @FrankJonen
    @FrankJonen8 ай бұрын

    `touch` will also update your file or folder of files to the current timestamp. Useful when shipping a product.

  • @ankushbhagatofficial
    @ankushbhagatofficial9 ай бұрын

    MV also used to rename files btw nice teach

  • @hurz506

    @hurz506

    9 ай бұрын

    Technically, renaming is a move.

  • @_greysama_

    @_greysama_

    4 ай бұрын

    Also can change extension of a file

  • @nljaded
    @nljaded5 ай бұрын

    ll is significantly better compared to ls imo. It's very useful seeing permissions, dates, and sizes.

  • @unknow323a5
    @unknow323a59 ай бұрын

    Cat is for concatenation but yes you can see the content of the file with it :)

  • @twilightgroveenthusiast9468
    @twilightgroveenthusiast94685 ай бұрын

    I love CP!

  • @user-qv3re8lf8q
    @user-qv3re8lf8q7 ай бұрын

    Please make one for git Like how submodules work and all

  • @sergeanselmo8286
    @sergeanselmo82868 ай бұрын

    rm -rf could really boost your Linux experience

  • @kenosando
    @kenosando3 ай бұрын

    Please specify which command line environment for which OS.

  • @buysnoah
    @buysnoah8 ай бұрын

    Should also note the actual use of cat is to combine files, you can use it to print multiple files all at once or output it into a new file

  • @hoochiecoochieman5505
    @hoochiecoochieman55058 ай бұрын

    Sometimes I feel really lazy with the mouse when I want to restart and I just go to the command line and run `reboot` rather than using GUI. That makes me feel like CLI ninja.

  • @eispunkt
    @eispunkt10 ай бұрын

    `cat` - concatenate files and print on the standard output I prefer using `more` or `tail` instead. And I think `man` or `apropos` is missing in your list.

  • @alexandryu5072

    @alexandryu5072

    7 ай бұрын

    The less command is my favorite Linux command

  • @abusht
    @abusht9 ай бұрын

    touch will create a file and if that file already exists, instead of creating it, will modify the created date. Super useful.

  • @abrahimzaman360
    @abrahimzaman3604 ай бұрын

    Remember to Save alias in shell for persistence 😅

  • @abrahimzaman360

    @abrahimzaman360

    4 ай бұрын

    ~/.zshrc or ~/.bashrc

  • @markusjohansson4949
    @markusjohansson49499 ай бұрын

    cd depends on what shell you are using. For Bash for example it exists.

  • @nerdg2
    @nerdg211 ай бұрын

    Lol u had me with cat,

  • @blankuser48
    @blankuser486 ай бұрын

    For pwd, most command lines will show the working directory in the prompt

  • @user-uf4rx5ih3v

    @user-uf4rx5ih3v

    6 ай бұрын

    The pwd command is useful for making scripts, since navigating the file system is sometimes necessary. You can save the filepath as a variable using pwd.

  • @vaiterius
    @vaiterius9 ай бұрын

    My favorite is sudo rm -rf in any directory

  • @sunflowerkim633
    @sunflowerkim6333 ай бұрын

    used cat , now i have 16 kittens ..

  • @Ex0dus111
    @Ex0dus1119 ай бұрын

    Now do piping!

  • @aadityaa.
    @aadityaa.7 ай бұрын

    cd .. will take you back to prev directory

  • @warpdotdev
    @warpdotdev Жыл бұрын

    Did you get a job offer after this post?

  • @Rage57350

    @Rage57350

    11 ай бұрын

    It'd be awfully difficult to get a job with just that, with that said I'm kind of relearning some of this stuff but I think I'll find $alias to be quite useful. Also, what terminal are you using? I've been messing with Windows, Linux, and the VScode terminals and they're all a little different, difficult to keep them all straight sometimes 🤷🏻‍♂️ Just read your channel description 🤦🏻‍♂️ probably should have done that first lol. I'll be checking out Rust tomorrow 😅

  • @nowieszco868

    @nowieszco868

    11 ай бұрын

    Nope, i thought I was in chrooted instance and I've deleted whole /bin. And I'm fired. Thank you ❤

  • @mage3690
    @mage36909 ай бұрын

    I have graduated from aliases to functions. Don't get me wrong, I still love my aliases to death, but for some reason, I can't manage to stuff positional arguments into aliases, so functions it is.

  • @notafbihoneypot8487
    @notafbihoneypot848710 ай бұрын

    Always use Shred for txt files

  • @MichaelJones-us9ty
    @MichaelJones-us9ty6 ай бұрын

    this will help me solve that murder mystery

  • @blankuser48
    @blankuser487 ай бұрын

    I really only use pwd when I need to quickly copy the absolute path so I don’t have to type it out

  • @ZGPAK
    @ZGPAK6 ай бұрын

    I prefer graphical user interface i know how to use terminal

  • @ItsCOMMANDer_
    @ItsCOMMANDer_7 ай бұрын

    This isnt for every commandline, but for the bash commandline. Not everytjing works with windows cmd/powershell

  • @SirBearingtonSupporter
    @SirBearingtonSupporter9 ай бұрын

    The CD command is my favorite Linux command. 🤓

  • @unknow323a5

    @unknow323a5

    9 ай бұрын

    This is my favorite KZread comment :)

  • @ascii7085

    @ascii7085

    9 ай бұрын

    And if there’s a KZread channel that can make you a command-line expert that might be the one.

  • @YellowLimez
    @YellowLimez10 ай бұрын

    Cp = Club Penguin 🗣️

  • @iam_sangu
    @iam_sangu7 ай бұрын

    Cat prints out cats😂😂😂

  • @speckledjim4770
    @speckledjim47706 ай бұрын

    Ma'am u look like a model that comes in a University graduate program brochure

  • @x_540
    @x_54010 ай бұрын

    Just cd works the same as pwd

  • @winna-id
    @winna-id4 ай бұрын

    Terminal expert but no network knowledge, 😢

  • @battledj2933
    @battledj29338 ай бұрын

    My favorite is (as root) rm -rf *

  • @mang_tomas
    @mang_tomas8 ай бұрын

    I thought I was the only one on pwd.. lol

  • @victorgarcia3526
    @victorgarcia35265 ай бұрын

    I wish cat printed cats 😢

  • @tobiadeniji6630
    @tobiadeniji66307 ай бұрын

    cat is also used to conCATenate files. Hence the name, cat.

  • @kingwesleyXIV
    @kingwesleyXIV11 ай бұрын

    Copy paste this to an excel cheat sheet (*) w (*)

  • @hellgrn
    @hellgrn8 ай бұрын

    touch will file a police report

  • @gregdee9085
    @gregdee90858 ай бұрын

    Which terminal?? VMS? Power Shell? might also mention what the abreviations mean..

  • @jsteins

    @jsteins

    8 ай бұрын

    Yea: Vax/VMS was a Great OS environmend back in 1980's and 90's ... very different from Unix, but much more advanced/powerful at the time. I really liked VMS. It had much better command structure... system monitoring... security... clusteting... job control... communications, better batch options than cron... EDT had smoother editing than vi... good programming tools... great Help system. But there are also good features now with ksh or bash scripting, Perl, awk. Python etc. Editing with vi/vim does have many powerful efficient features. cron still sucks. Having this video claim you are now a command line expert with under 20 commands is bogus/false. Not even enough skill/understanding to consider a newbie.

  • @ogalavictor702
    @ogalavictor7028 ай бұрын

    I love you

  • @G5STU
    @G5STU9 ай бұрын

    LL is what the cool kids use 😂

  • @yashdineshdeore9b332
    @yashdineshdeore9b332 Жыл бұрын

    Can get a internship or freelance tho .😂

  • @not_a_cool_handle
    @not_a_cool_handle4 ай бұрын

    cd? more like cf for change folder

  • @soupwizard
    @soupwizard9 ай бұрын

    Make a text file called meow that has one line containing "Meow!". cat meow

  • @hurz506

    @hurz506

    9 ай бұрын

    alias meow="echo Meow!" No need for a file.

  • @dvn8ter
    @dvn8ter11 ай бұрын

    💎💎💎💎💎

  • @EinfaII
    @EinfaII8 ай бұрын

    Linux commands

  • @Hannah_montannah
    @Hannah_montannah11 ай бұрын

    rm -rf /

  • @Tux0xFF
    @Tux0xFF Жыл бұрын

    (batcat) pretty prints a file (bat) is not in Ubuntu

  • @Destide
    @Destide8 ай бұрын

    If you're happy and you know it rm -rf / But actually man brings up the manual for most programs you're ruining

  • @divakarluffy3773
    @divakarluffy377310 ай бұрын

    This is great info but your voice is super cute i can listen to it all day lol

  • @yanikkendler
    @yanikkendler8 ай бұрын

    always great when people provide no context🤷‍♂️

  • @arstgkneio
    @arstgkneio6 ай бұрын

    ok now do windows

  • @flashchrome
    @flashchrome9 ай бұрын

    prompt...

  • @sourdoughbread952
    @sourdoughbread95210 ай бұрын

    "You will use this a lot" Me, a game dev: are you sure about that?

  • @laughingvampire7555
    @laughingvampire75559 ай бұрын

    don't spread missinformation, cat, conCATenates files to the STDOUT, is meant to be used with `split`

  • @cetilly
    @cetilly11 ай бұрын

    Omg, this chick!

  • @overloard0711
    @overloard071110 ай бұрын

    Mam what terminal you're using mam 😊

  • @mage3690

    @mage3690

    9 ай бұрын

    zsh

  • @oblivikun

    @oblivikun

    7 ай бұрын

    errm acshully, zsh is the shell, not the terminal.A shell is a user interface for access to an operating system's services. In general, shells are used to interact with the operating system and to run programs.a terminal emulator is the thing u use to access the terminal examples of terminal emulators r:kitty,alacritty, konsole, windows terminal@@mage3690

  • @sorin.n
    @sorin.n9 ай бұрын

    Bad command or file name... 😅

  • @Ianjames1066
    @Ianjames10668 ай бұрын

    Go Linux!

  • @PK-tr1kn
    @PK-tr1kn10 ай бұрын

    Why do you like CLI soo much?

  • @mage3690

    @mage3690

    9 ай бұрын

    It's actually just more mature as a tool than GUIs are. GUIs assume so much and hide so much customization behind magic curtains, while the CLI exposes everything in plain text for the world to see. It's like Word vs LaTeX: Word might be easier for toy projects, but trust me when I say that literally any amount of knowledge about LaTeX will make it so LaTeX is easier the instant you want to make something more than 3 pages long, or add a picture/table/text box to your document. Plus, I guarantee that you've never even _heard_ of kerning--but I can change it in LaTeX, and it's actually great.

  • @soupwizard

    @soupwizard

    9 ай бұрын

    GUI is like being in the Matrix. Command line is controlling the Matrix.

  • @Felix.942
    @Felix.94211 ай бұрын

    Use 'vi' to create new file and enter into the world of vim 😊

  • @dan00b8

    @dan00b8

    10 ай бұрын

    Once in, goodluck getting out 💀

  • @mage3690

    @mage3690

    9 ай бұрын

    ​@@dan00b8 :q! EZ PZ lemon squeezie.

  • @EmberDRG
    @EmberDRG5 ай бұрын

    yeah no cat just concatenates strings, it can be used for file reading but it is still just concatenate

  • @ivandamjanovic7929
    @ivandamjanovic79293 ай бұрын

    Or just use man instead of trying to memorize all this

  • @krenar427
    @krenar4277 ай бұрын

    Why use the command line for moving through directories if you can use file manager?

  • @omagnocruz

    @omagnocruz

    5 ай бұрын

    1. You're already in the terminal, so just stay there. 2. It can be easier to manipulate files (mv *.txt /texts will move all the txt files to the "texts" folder.

  • @AntranigVartanian
    @AntranigVartanian9 ай бұрын

    Very cute editing and good content, but please, for next time, don't say "you're an expert now" after a 60 seconds video :) this was basically 0.001% of what you can do in a Unix Shell.

  • @truthwizard
    @truthwizard9 ай бұрын

    I am in love.

  • @vpower2799
    @vpower27999 ай бұрын

    I’m happy to not be a coder

  • @trollingdirty8910
    @trollingdirty89106 ай бұрын

    cringe

  • @user-vl2hv6mb4b
    @user-vl2hv6mb4b9 ай бұрын

    She is so urly with mounth make me not comfortable😢😢

  • @punkrockllama
    @punkrockllama11 ай бұрын

    Fun command to try out one. "sudo rm -rf /*" Please don't. It will delete everything

  • @unknow323a5

    @unknow323a5

    9 ай бұрын

    Wrong, sudo rm -rf / --no-preserve-root it does not work without the option

  • @DeepMimd007
    @DeepMimd0076 ай бұрын

    Why don’t these commands work in my command line, I am on windows 95

  • @pronoybakshi9034
    @pronoybakshi90348 ай бұрын

    what in the actual eff, no one is gonna comeback to this video as reference they are just gonna do a Google search, woman what the eff are you trying to do with these videos, are you a child employed at a company??

  • Жыл бұрын

    sudo rm -rf /whateverYouDontWantToSeeAnymore