The Command Line in 60 Seconds 👩‍💻 #developer #codingandprogramming #programmer #computerscience

preview_player
Показать описание

Рекомендации по теме
Комментарии
Автор

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

biscuitsofdeath
Автор

MV also used to rename files btw nice teach

ankushbhagatofficial
Автор

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.

somefishhere
Автор

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

FrankJonen
Автор

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

nljaded
Автор

`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.

eispunkt
Автор

rm -rf could really boost your Linux experience

sergeanselmo
Автор

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

blankuser
Автор

Please make one for git
Like how submodules work and all

alcidesko
Автор

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

buysnoah
Автор

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

abusht
Автор

Remember to Save alias in shell for persistence 😅

abrahimzaman
Автор

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

unknowa
Автор

Please specify which command line environment for which OS.

kenosando
Автор

The CD command is my favorite Linux command.
🤓

SirBearingtonSupporter
Автор

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

markusjohansson
Автор

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.

hoochiecoochieman
Автор

Did you get a job offer after this post?

warpdotdev
Автор

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.

mage
Автор

I prefer graphical user interface i know how to use terminal

ZGPAK