A random assortment of notes on linux including commands. This is a work in progress
Owner | Group | Other |
---|---|---|
r w x | r w x | r w x |
------------ | ------------ | ------------ |
1 1 1 | 1 1 1 | 1 1 1 |
read
write
execute
no permission
Changes file permissions to a mode
and a mode describes the permissions to modify.
Doesn't change the permissions of symbolic links.
Eg chmod 740
allows read, write, execute for owner, read for group and no permission for other.
Vim is a popular command based text editor. Vim is keyboard orientated which renders your mouse useless. It can make you a more effecient developer especially as a project gets larger and most coding requires hopping about a code base making changes. There are a number of keyboard shortcuts which I'll list below:
:q
quit :w
save (this can be used in conjunction with q
)i
this is insert
mode which allows you to edit starting before the current character Note to leave this ensure you esc
a
this allows you to edit characters starting after the current characterh
, j
, k
, l
- these are used to move left, right, up, downw
to move forward one wordb
to move back 1 wordgg
to move to very start of file$
to move to end of line0
to move to start of linedw
to delete a word and dd
to delete an entire line/
to begin searching for a wordv
to highlight words and y
to yank
them followed by p
to paste itu
to undo the last thingThose are just some basic commands I find quite useful however you can hone your vim skills here: https://vim-adventures.com/ or use this anki deck: https://ankiweb.net/shared/info/553269875.