Тёмный

Day 2 | Linux Shell Scripting Beginner To Expert Course | Basic Script Building 🔥🔥🔥 

Engr. Abhishek Roshan
Подписаться 10 тыс.
Просмотров 3,3 тыс.
50% 1

#engrabhishekroshan
Support My blogging Website : freshertube.com
In This Video I have Explained Script Building for Linux Bash Shell Scripting Playlist.
Using Multiple Commands
Creating a Script File
Displaying Messages.
Using Variables
Environment variables
User variables
Command Substitution
Click the below link and Join the membership
Join this channel to get access to perks:
/ @engrabhishekroshan
Watch Hindi Playlist of Linux 100+ Realtime Scenario based interview Questions and Answers
अब हिंदी में
Part 1 • Linux 100 + Realtime S...
Part 2 • Linux 100 + Realtime S...
AWS 300 + Realtime Scenario based Interview questions and answers explained in detail
Part 1 : • AWS 300 + Realtime sce...
Part 2 : • AWS 300 + Realtime sce...
Part 3 : • AWS 300 + Realtime Sce...
Part 4 : • AWS 300 + Realtime Sce...
Watch English Playlist of Linux 100 + Realtime Scenario Based Interview Questions and Answers Explained in Detail
Part 1 • Linux 100 + Realtime S... ( In this video I covered 8 Q&A)
Part 2 • Linux 100 + Realtime S... ( In this video I covered 10 Q&A)
Part 3 • Linux 100 + Realtime S... ( In this video I covered 10 Q&A)
Part 4 • Linux 100 + Realtime S... ( In this video I covered 12 Q&A)
Part 5 • Linux 100 + Realtime S... (In this video I covered 10 Q&A)
Part 6 • Linux 100 + Realtime S... (In this video I covered 10 Q&A)
Part 7 • Linux 100 + Realtime S... (In this video I covered 10 Q&A)
Part 8 • Linux 100 + Realtime S... (In this video I covered 10 Q&A)
Part 9 • Linux 100 + Realtime S... (In this video I covered 10 Q&A)
Part 10 • Linux 100 + Realtime S... (In this video I covered 12 Q&A)
Part 11 • Linux 100 + Realtime S... (In this video I covered 10 Q&A)
Part 12 • Linux 100 + Realtime S... (In this video I have covered 10 Q&A)
Part 13 • Linux 100 + Realtime S... (In This Video I have covered 1 Scenario based Interview Q&A )
Linux Shell Scripting Beginner To Expert Bash Shell Script Course Content
Day 1 : • Day 1 | Linux Shell Sc...
Day 2 : • Day 2 | Linux Shell Sc...
Day 3 : • Day 3 | Linux Shell Sc...
Day 4 : • Day 4 | Linux Shell Sc...
Linux Shell Script Realtime Project 1 : • Linux Bash Shell Realt...
Linux Shell Script Realtime Project 2 : • Linux Bash Shell Realt...
Linux Shell Script Realtime Project 3 : • Linux Bash Shell Realt...
Day 5 • Day 5 | Linux Shell Sc...
Day 6 • Day 6 | Linux Shell Sc...
Day 7 Linux Script Realtime Project 4 : • Day 7 | Linux Shell Sc...
Day 8 • Day 8 | Linux Shell Sc...
Day 9 • Day 9 | Linux Shell Sc...
Day 10 Linux Script Realtime Project 5: • Day 10 | Linux Shell S...
Day 11 • Day 11 | Linux Shell S...
Day 12 • Day 12 | Linux Shell S...
Day 13 • Day 13 | Linux Shell S...
Day 14 Linux Script Realtime Project 6: • Day 14 | Linux Bash Sh...
/ abhishek-roshan-424591112
/ abhishek88roshan
/ engr.abhishekroshan
#linuxscripting #shellscripting #realtimeprojects #linuxskills #devops #automation #commandline #scriptingprojects #sysadminskills #bashscripting

Опубликовано:

 

2 июл 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 16   
@jamespoda5621
@jamespoda5621 8 дней назад
your teaching ways are amazing
@EngrAbhishekRoshan
@EngrAbhishekRoshan 7 дней назад
Thank you and Keep watching
@debiprasadsahoo9726
@debiprasadsahoo9726 2 месяца назад
Crystall Clear .....👣
@EngrAbhishekRoshan
@EngrAbhishekRoshan 2 месяца назад
Thanks
@VinothKumarVinothan
@VinothKumarVinothan 5 месяцев назад
Linux admin must know the full concept of shell or basic knowledge needed bcoz its like coding like c++
@EngrAbhishekRoshan
@EngrAbhishekRoshan 5 месяцев назад
It’s true
@VinothKumarVinothan
@VinothKumarVinothan 5 месяцев назад
​@@EngrAbhishekRoshaninterview person ask you know any script language python,shell,but I said I know basic knowledge only they r not consider
@EngrAbhishekRoshan
@EngrAbhishekRoshan 5 месяцев назад
Yes, it’s because of the role might be where they need someone expert in shell script.Just check check the JD what they are looking for
@rutikabudar359
@rutikabudar359 24 дня назад
In linux For-loop and user variable shell scripting same or different ?
@EngrAbhishekRoshan
@EngrAbhishekRoshan 24 дня назад
In Linux shell scripting, a for-loop and a user-defined variable are different concepts, although they can be used together within a script. Here's an explanation of each and how they can be related: For-loop A for-loop is a control flow statement for specifying iteration, which allows code to be executed repeatedly. Example of a For-loop #!/bin/bash for i in {1..5} do echo "Iteration $i" done This script will output: Iteration 1 Iteration 2 Iteration 3 Iteration 4 Iteration 5 User-defined Variable A user-defined variable is a variable that you create and assign a value to within your script. Example of a User-defined Variable #!/bin/bash name="Alice" echo "Hello, $name" This script will output: Hello, Alice Using For-loop with User-defined Variables You can use user-defined variables within a for-loop to perform operations on them or to control the loop's behavior. #!/bin/bash names=("Alice" "Bob" "Charlie") for name in "${names[@]}" do echo "Hello, $name" done This script will output: Hello, Alice Hello, Bob Hello, Charlie In summary, for-loops and user-defined variables are distinct but can be used together effectively in shell scripting. For-loops manage repetition, while variables store and manage data.
@Revanth3018
@Revanth3018 5 месяцев назад
What terminal using
@EngrAbhishekRoshan
@EngrAbhishekRoshan 5 месяцев назад
I am using mobaxterm to connect to VM's .check my previous videos where i have explained how download mobaxtern and connect to VM's.
@prabhakaryadav1268
@prabhakaryadav1268 Месяц назад
Good Evening sir What is the purpose of -n
@EngrAbhishekRoshan
@EngrAbhishekRoshan Месяц назад
This Comes Under Topic test String Comparisons. -n str1 Checks if str1 has a length greater than zero Check My Playlist Linux Shell Scripting Beginner to Expert Level Course. ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-CeFT-vUukEU.html ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-L8HoABldBGE.html
@abhilashrathod3341
@abhilashrathod3341 24 дня назад
Sir, where do I find notes PDF?
@EngrAbhishekRoshan
@EngrAbhishekRoshan 20 дней назад
check my blogging website..freshertube.com/ but work in progress
Далее
Фэйворит жвачка А? (2024)
01:00
Просмотров 358 тыс.