Shell Scripting Tutorial

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

In this one video I'll cover Vim, Input, Output, Variables, Math, Functions, Executing Python Functions, Conditionals, Strings, Arrays, Looping, Positional Parameters, Parameter Expansions and a whole lot more.

MY UDEMY COURSES ARE 87.5% OFF TIL December 19th ($9.99) ONE IS FREE

Like the channel? Consider becoming a Patreon! Check it out here:

*Watch More Learn in One Videos*
Рекомендации по теме
Комментарии
Автор

Learn in One Videos for Every Programming Language

derekbanas
Автор

vim @ 0:55
bash comments/printing @ 5:05
variables @ 7:35
constants @ 8:15
arithmetic @ 8:39
using python commands @ 13:08
multi-line printing @13:45
functions @ 15:10
reading input @ 19:16
conditionals @ 20:00
logical operators @ 24:27
files (create / remove) @ 25:24
strings @ 26:57
files (checks) @ 29:00
regular expressions @ 30:43
more on input / output @ 32:20
case statements @ 39:00
parameter expansions @ 42:02
looping @ 43:47
arrays @ 50:56
positional parameters (command line args) @ 56:35

Rozenkrantzz
Автор

"i prefer to move these along quickly and let you adjust yourself to a pace youre comfortable with" THANKYOU.

Wadlebutt
Автор

The best tech vids I have found! I REALLY like the fast pace, and no unnecessary-fluff approach you take. Keep up the great work!

wesg
Автор

I like the speed of your tutorial. There is no time to get distracted.

jamespretlow
Автор

Derek you're a mind reader I just started my internship and it's all bash scripting... Great timing Thanks!

SuperDanny
Автор

Subscribed to you a long time ago because of your great tutorials, but I haven't made the time to watch any of your videos in a real long time. Saw this, and I'd been wanting to learn BASH scripting, and I remembered again why I subscribed. You have the best programming tutorials online bar none, and I really need to spend the time investing in myself by watching more of your videos! Thanks so much!

christopherfujino
Автор

Thank you for another wonderful tutorial Derek. This is my second one after mySQL tutorial. We really appreciate your clear and no-nonsense way of teaching. A tutorial on AWK, GREP, SED would be helpful if you plan on doing one ever in the future.

ravikiranmandha
Автор

Out of many, best in its kind.
This tutorial beats a line of many others I`ve watched so far.
This guy deserves a thumbs up.

ilshatabdulmanov
Автор

Glad you made a shell scripting video. I tend to review your videos before I start coding, It helps me remember all the little things. This one is going to be very useful!

mikeseitz
Автор

This was the best Shell Scripting tutorial I’ve seen on Youtube so far. Very well done. Thanks for sharing!

qodino
Автор

Found out I needed to learn shell scripting today, Derek uploaded yesterday. Perfect timing and great video. Thanks so much!

kaiergin
Автор

Again.. This is the Best.. The BEST.. The best tutorial ever.

Thanks a lot Derek . It really helped a lot....

samsungyou
Автор

Great tutorial. I love the pace of these. There's no waffle just pure gold.

tainoroyal
Автор

VIM Cheat sheet (based on video, thanks to Derek)

• "Shift +a" (Upper case A) put you in insert mode
• "Shift + g" (Upper case G) will let you go to last line
• Pressing "o" will move you to next line in insert mode after "Shift + g"
• "w" move forward to next word (first char of word)
• "b" move backward to last word (first char of word)
• "0" (zero) beginning of the line. "$" end of the line
• Global settings like syntax on, autoindent can be saved in vimrc file, located in user home directory. This will make them permanent as well.
• "Shift + v" (Upper case V) will select the line, use arrow key to select more. "v" will select the character.
• "d" to delete (or cut) the text.
• "y" to copy
• "p" to paste
• "u" to undo
• Press Esc for command mode type ":" and commands
○ q! -: Quit without saving
○ wq -: Save and quit
○ set number -: will display the line numbers
○ syntax on -: Will show syntax highlighting
○ set tabstop=2 -: Set tab space to given number
○ set autoindent -: for auto indent new line

israrahmad
Автор

Very useful tutorial and most of the basics have been covered. Really appreciate it !!!

amarmundankar
Автор

The amount of material you produce is just... words can't describe how much I love you.

Earlosaur
Автор

Great videos, Derek
100 miles per hour, but short enough to watch in one sitting. Best tutorials on YouTube :)

lapinblanc
Автор

Just starting an internship in 3 days, and they emailed me to "brush up" on linux shell scripting. I've never done it and I'm not sure why they think I have. I finished this video, and it has been hugely helpful! Just a lot of densely packed information so I will probably watch it a couple more times. Thanks a bunch, super helpful!

sebastiantu
Автор

the two best tutorials to learn by is the bash basics tutorial by joe collins and this one after, this one teaches scripting in bash and does offer some guidance into what the commands do, but not in the same detail as joe like the chmod commands could be explained with greater depth.Good vid.

sedeanimugamez