EVERY programmer should know these commands 👩‍💻 #programming #tech #technology #code #software

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

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

Make sure after ‘touch’ you put ‘grass’ following it.

itsmedanylh
Автор

touch command actually updates the last modified time of a file. It creates the file if it doesn't already exist

Edite: I actually was wrong the touch command writes bytes to a file, it creates a file open in the Unix gs system and then closes it

mahditajik
Автор

He, s indirectly saying go learn linux terminal

runemaster
Автор

Whenever vscode has my cpp files in my background my friend makes some dumb joke about “cp” (different cp), so I can’t imagine how he would handle the cp command

amukh_dev
Автор

I think they won't "make you way more productive"
they are basics

realMrLukas
Автор

The alias *take* is a useful command that I use on a daily basis!

It is basically *mkdir && cd* into a new (or existing) directory:

function take () {
case "$1" in /*) :;; *) set -- "./$1";; esac
mkdir -p "$1"; cd "$1";
}

DRSDavidSoft
Автор

Do you want more of these informative type videos? 😀

CodingWithLewis
Автор

Can you cover commands like find, grep and awk? Those come in handy to automate stuff.

muffina
Автор

Also this:- sudo rm -rf .
Delete everything and sleep 😂😂

himanshubarnwal
Автор

Touch doesn't just create a new file, it also updates the "last modified" field in the metadata of an existing file.

I don't know when that would be useful, but it is something it does.

QuotePilgrim
Автор

Most of these commands are basic commands in Batch

thezealcloakerthatruinedyo
Автор

New acronym acquired. CD[2]
CD = {Compact Disc, Cool Downs, Change Directory}

GmanGavin
Автор

Learning bash infinitely improved my productivity.

gabrielblackwell
Автор

there are plenty other commands that are useful, ill give a few of them: ls, grep, mv, cat, rmdir, rm, and others. ls prints files and dirs in the current directory, grep searches a string in an input file, mv can rename and move files, cat prints the contents of a file, rmdir removes an empty directory, and rm removes files.

parabolaaa
Автор

this became first week CS school content

tidy
Автор

I loooove using touch so I don't have to place it in a folder after I save it.

anonymous
Автор

Sudo systemctl restart service-name

Its like closing an app and opening it again hoping it works

yungifez
Автор

OMG this is the first time I knew all the commands.

aceaem
Автор

If you lost, just type "pwd".

syukcode
Автор

me knowning all of these commands by just learning linux:

justecho