Shell Scripting for DevOps|Shell Scripting Zero 2 Hero|Shell Scripting Interview Questions|

Learn Kubernetes FREE Practically -
All Labs page: kode.wiki/3RxQ3dL
Familiarize with environment: kode.wiki/4etu01y
Pods: kode.wiki/3KIMDRL
Replica Sets: kode.wiki/3RxA8Mt
Deployments: kode.wiki/4c3YUw7
Rolling Updates and Rollbacks: kode.wiki/4cpKxSo
Services: kode.wiki/45pFOhr
Support my work
www.buymeacoffee.com/abhishekprd Hi Everyone, Welcome back to my channel.
In this video, We will take a look at the Basics of Shell Scripting and learn how to become a Hero in Linux and Shell Scripting.
Learn why Shell Scripting is used in DevOps and most commonly asked Interview Questions.
0:00 - Introduction
01:30 - What is the purpose of scripting and automation?
05:25 - How to create a file ?
06:15 - How to list the files and folders ?
07:40 - man command in linux ?
10:50 - (vi/vim) - How to write a file in Linux?
13:00 - Difference between touch and vim?
15:17 - How to copy content in Linux?
15:25 - What is the purpose of #!/bin/bash or #!/bin/sh?
17:25 - What is the difference between ksh, bash and dash?
25:00 - How to use Insert command in Linux?
25:00 - echo command in Linux?
29:20 - How to execute a Shell Script?
31:00 - How to grant permissions in Linux?
32:00 - chmod command and how to use?
40:30 - How to check the history of commands?
41:30 - Revise all the commands that we learnt till now
45:30 - How to create folders?
46:00 - How to change the directory in linux?
49:00 - Learn how to write a simple shell script?
59:35 - What is purpose of Shell Scripting in DevOps?
1:06:22 - How to check CPU and RAM of a Linux Machine?
1:07:20 - What is "Top" command and why is it used?
1:08:50 - Conclusion of PART - 01
About me:
-----------------
LinkedIn: / abhishek-veeramalla-77...
GitHub: github.com/iam-veeramalla
Medium: / abhishekveeramalla-av
KZread: / @abhishekveeramalla .
.
Disclaimer: Unauthorized copying, reproduction, or distribution of this video content, in whole or in part, is strictly prohibited. Any attempt to upload, share, or use this content for commercial or non-commercial purposes without explicit permission from the owner will be subject to legal action. All rights reserved.

Пікірлер: 842

  • @AbhishekVeeramalla
    @AbhishekVeeramallaАй бұрын

    Learn Kubernetes FREE Practically - All Labs page: kode.wiki/3RxQ3dL Familiarize with environment: kode.wiki/4etu01y Pods: kode.wiki/3KIMDRL Replica Sets: kode.wiki/3RxA8Mt Deployments: kode.wiki/4c3YUw7 Rolling Updates and Rollbacks: kode.wiki/4cpKxSo Services: kode.wiki/45pFOhr

  • @meramvlogs4260
    @meramvlogs4260 Жыл бұрын

    I paid almost 2500 to one of the reputed website for learning Linux, but you are the best in teaching the topics. Thank you so much such wonderful content that too at free of cost. You must have BIG heart. Stay blessed Brother.

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    Жыл бұрын

    You're very welcome!

  • @tanajilahudkar

    @tanajilahudkar

    Жыл бұрын

    really your great

  • @sindhusinchu2958

    @sindhusinchu2958

    11 ай бұрын

    ​@@AbhishekVeeramallahi sir

  • @tejeshwararaothella8761

    @tejeshwararaothella8761

    2 ай бұрын

    Kodecloud?

  • @SIVAKUMARGOUNI
    @SIVAKUMARGOUNI9 күн бұрын

    I Have attended so many online paid Devops classes but didnt get any knowledge with their teaching skills, now i came to know from one of my friend , following all videos , now i am getting knowledge on each topic and doing tasks immediately. Thank you 🙏

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    9 күн бұрын

    ❤️

  • @tallurivamsi6413
    @tallurivamsi641310 ай бұрын

    Your are a gem.Without expecting anything,you are educating lot of people like me and the best part is you are the part of our learning journey and career growth.The way you are explaining the things are very intresting.The best thing in anybody's life is they feel they are the reason for others growth,as of now you are doing the same thing.keep educating us and keep inspiring us.....

  • @bindusuggisetti1912
    @bindusuggisetti1912 Жыл бұрын

    Hi Abhishek, literally awesome you are. I just found that in this video you have even mentioned how to select a file simply by a double click, teaching in detailed way. Highly appreciate it.

  • @rutheirene7548
    @rutheirene7548 Жыл бұрын

    Wow! Your content is awesome and you are a very good teacher that breaks down complex things into simple. You have done a great job. Thanks for posting this and for the expository. Interested in more of your tutorials.

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    Жыл бұрын

    Glad it was helpful!

  • @user-xi4ms3ek7j
    @user-xi4ms3ek7j11 ай бұрын

    I have paid 7000 for devops course but, there is no detailed explanation of any topic but ,your videos are amazing for explaining each and every topic in DevOps I have learned a lot from ur videos. thanks for teaching us these precious concepts.

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    11 ай бұрын

    Glad to hear that

  • @surbhisharma5333
    @surbhisharma5333 Жыл бұрын

    Thank you for making these videos. Your way of teaching is very crisp and clear!

  • @kamthecloser7373
    @kamthecloser73734 ай бұрын

    Thanks for simplifying Bash Scripting into a more digestible lecture!

  • @jagruthireddy98
    @jagruthireddy98 Жыл бұрын

    The best video I have ever seen about Linux and Shell Scripting. Kudos to your amazing teaching👏👏👏👏

  • @Deva2596
    @Deva259611 ай бұрын

    🎯 Key Takeaways for quick navigation: 00:00 📺 Introduction to Shell Scripting tutorial and its relevance to DevOps engineers. 02:21 🤖 Automation through shell scripting helps reduce manual tasks and streamline activities on Linux systems. 04:13 📜 Shell scripting is the process of automating day-to-day activities on Linux systems using script files. 05:32 📂 "touch" command creates files, essential for automation scripts. "ls" lists files, "-ltr" sorts by timestamp. 07:26 📚 Use "man" command to access the manual for any Linux command and understand its usage and options. 09:02 📋 Basic commands learned so far: "ls" for listing files, "touch" for file creation, "man" for accessing command manuals. 11:59 🔧 Use terminal tools like "Vim" or "VI" to create and edit shell script files. 15:01 📜 Start a shell script with a shebang ("#!") line specifying the interpreter, like "/bin/bash" for Bash scripting. 19:24 🔀 Choose the appropriate shell interpreter for your scripting needs, with Bash being a widely used option. 22:39 🚫 Be cautious of using "/bin/sh" in scripts, as system defaults might vary (e.g., "sh" pointing to "dash" in some systems). Prefer "/bin/bash" to ensure compatibility. 23:05 📄 Always use `/bin/bash` as the shebang in shell scripts to ensure compatibility, as some systems may use `dash` or other shells by default. 25:07 📝 In Linux, use the `echo` command to print text, analogous to using print statements in other programming languages. 26:47 📝 Vim is used to create and edit files in the command line. Entering "insert mode" allows you to type text, and pressing "esc" returns to command mode. 28:45 📂 The `cat` command prints the contents of a file without opening it, providing a quick way to view file contents. 29:54 ▶️ Execute a shell script using either `sh scriptname` or `./scriptname`. The latter is used for executable files. Make sure to set execute permissions using `chmod +x scriptname` if needed. 31:25 🔒 Linux requires proper permissions to execute files. Use `chmod` to assign read, write, and execute permissions for different user categories: user, group, and others. Numeric values like 777 or 444 represent these permissions. 35:09 ⚙️ `chmod` permissions follow the 4-2-1 convention: 4 for read, 2 for write, and 1 for execute. Use these values to grant permissions to different users. 37:25 🔍 The `history` command displays a list of previously executed commands, which can be helpful for referencing or repeating commands. 39:16 📂 `pwd` displays the present working directory, showing your current location in the file system. 42:10 📝 Use `mkdir` to create directories (folders), and navigate between directories using `cd`. `cd ..` moves up one directory level. 47:08 📂 PWD command for present working directory. 47:22 📁 MKDIR for creating directories. 47:37 📂 CD for changing directories. 48:20 📝 Writing a simple shell script for creating files and folders. 49:55 🗒️ Using comments in shell scripts with the "#" symbol. 50:10 💡 Shell script to create files and folders. 51:08 🔑 Using CHMOD for changing permissions. 53:43 ⚙️ Executing shell script and creating files and folders. 54:11 🌐 Shell scripting for automating DevOps tasks. 57:00 📊 Use case: Automated node health monitoring of virtual machines. 01:00:07 🧰 DevOps engineers use shell scripting for infrastructure and configuration management. 01:02:45 🔄 Use of "top" command to monitor processes and resources. 01:08:09 ⚡ Advanced topics in shell scripting, like trapping signals and cron jobs. Made with HARPA AI

  • @dilly4747

    @dilly4747

    11 ай бұрын

    Thank you

  • @SaiKiran-hj6qb

    @SaiKiran-hj6qb

    11 ай бұрын

    Thank You 👍

  • @ayyappans3133

    @ayyappans3133

    9 ай бұрын

    Can I have a advance shell scripting seriously you are awesome 👍 1hr sit and watched your video without any disturbance because way of explaining is great nice

  • @engonweitiddingclarinda9598

    @engonweitiddingclarinda9598

    Ай бұрын

    Thank you

  • @tejamallamputi1941

    @tejamallamputi1941

    26 күн бұрын

    Thank you

  • @user-cb8pi7cv5n
    @user-cb8pi7cv5n7 ай бұрын

    To the point and crisp content . Thanks a ton, a lot of my concepts got clear today. Cant wait to explore more from the channel.

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    7 ай бұрын

    Most welcome!

  • @dirudeen1421
    @dirudeen14212 ай бұрын

    I just wanted to extend a heartfelt thank you for taking the time to teach us Bash scripting. 🙏 Your patience, expertise, and clear explanations have made a complex subject much more approachable and enjoyable. 😊 We are truly grateful for the effort you put into helping us learn and grow. 🌱 Your guidance has been invaluable, and we appreciate everything you’ve done to support our learning journey. Thank you, Abhishe! 👏👏

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    2 ай бұрын

    Glad it was helpful!

  • @anil-kumar75
    @anil-kumar75 Жыл бұрын

    Thanks for the quality content, Eagerly waiting for advanced concepts of shell script with realtime scenarios

  • @govindmehra522

    @govindmehra522

    3 ай бұрын

    Hi @abhishek veeramalla sir please create a video on advance topic in shell script

  • @mullapudirajaram796
    @mullapudirajaram796 Жыл бұрын

    My mother saw your pic at video in between😅... She asked who was he.. i told her you were my friend from Hyderabad who has been giving classes free for 2 years ago..😅you know what she believed me as well...

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    Жыл бұрын

    Haha .. Thanks alot 🙏

  • @DeviKumavath

    @DeviKumavath

    3 ай бұрын

    Same My mami saw his picture and asked if he works in your company 😅

  • @abhishekgowda7383
    @abhishekgowda7383 Жыл бұрын

    When I ever I visit your channel & do search for a devops topic,I will get the topics in laymen term,even people with no IT background can understand.Thank you bro.

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    Жыл бұрын

    ❤️❤️❤️

  • @rutujasalunke7807
    @rutujasalunke78073 ай бұрын

    Hi Abhishek, Firstly, I want to express my gratitude for the incredible work you're doing to support learners like myself. I deeply regret discovering your channel after investing in an expensive BootCamp. Your videos have reignited my hope for learning and gaining knowledge. They motivate me to get back on track and dive into learning again. Your roadmap and day-by-day videos are beneficial and easy to comprehend. They teach us how to do things and why and when they are applicable, which is often lacking in many professors' teachings. I'm eager to continue learning from you and wish your channel immense success. The world needs more educators like you.

  • @mrjacksparrow8942
    @mrjacksparrow8942 Жыл бұрын

    Very informative, kudos to you for making this video. It's very helpful for me. I've been searching for the best scripting videos on youtube since last week, and now I found yours. not even a minute was wasted worth watching it. Thank you for making this video.

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    Жыл бұрын

    Thanks alot 🙏❤️

  • @user-kx4kr9fn8z
    @user-kx4kr9fn8z9 ай бұрын

    Thank you Abhishek for the video and explaining the topics in very detailed manner. please continue with the advanced depth in Scripting.

  • @techotechs
    @techotechs Жыл бұрын

    Mind-blowing Abhishek...Through this only one video, I have learned lots of things regarding Shell scripting...Since long, I am not able to find this type of video on youtube...Keep it up with some advance Tutorials for same...Love to watch it...Agin Thanks for making these type of videos...

  • @vivekmittal2955
    @vivekmittal29557 ай бұрын

    One of the best video on shell scripting by one of the best seasoned teacher out here no filers direct to the topic and a remarkable ability to keep student interest in the topic hats off to you sir. thank you

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    7 ай бұрын

    😤😤😤

  • @raeelhaider5414
    @raeelhaider54142 ай бұрын

    Hi Abhisheek. I am really grateful to you for your sincere efforts. I have never watched such useful content on linux in my whole career.

  • @ranineogadhikary5652
    @ranineogadhikary5652 Жыл бұрын

    Very well explained in such a simple way! Thank you Abhishek for your extraordinary work🙏

  • @miideysimbi3318
    @miideysimbi33186 ай бұрын

    thank you so much, and we will appreciate the advance shell scripting concept. you're blessed

  • @One_stop_Fitness
    @One_stop_Fitness6 ай бұрын

    Thanks for sharing tons of knowledge. I have even learnt some courses in edureka platform but i got clear understanding by watching your lectures. Abishek you are the best!

  • @user-ub5sd8ot8m
    @user-ub5sd8ot8m5 ай бұрын

    Hello Abhishek, Thank you very much for this amazing videos for shell scripting The way you are explaining is very interesting and getting a clear picture . Without expectation anything you are sharing your knowledge with others.

  • @reyanshibirru4127
    @reyanshibirru4127 Жыл бұрын

    Ur content is easy to understand and ur explanation is straight to the point . Learned so much from ur video's..and expecting more hands on as well...Thanks for posting....

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    Жыл бұрын

    Sure Reyanshi, Thanks alot for the constant support.

  • @devia7417
    @devia74172 ай бұрын

    Hey Abhishek, I watched this video today and its really very very useful ,you made it so easy to understand and the pace of learning. Thank you for sharing this knowledge with us and helping us to grow in our career.Truly appreciate it!!!

  • @saikrishna12232
    @saikrishna12232 Жыл бұрын

    Thanks a lot for spending your time and making this master piece. Appreciate it.

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    Жыл бұрын

    Thanks alot

  • @niharika9911
    @niharika9911 Жыл бұрын

    Your explanation is too good. Can't wait to learn advanced concepts as well. Can you please make a video on that as well?

  • @harshalp7422
    @harshalp7422Ай бұрын

    You create wonders while explaining the topics, I have been following your DevOps Videos now and it is very easy to understand to everyone. You will see my comments for your each videos :)

  • @Cloudnp9458
    @Cloudnp94584 ай бұрын

    To monitor node health. Cpu and ram.. nproc - cpu usage free - memory usage Top is for both.

  • @sai_kumar_maladi
    @sai_kumar_maladi Жыл бұрын

    Thanks brother, I came to comment to make part 2 , but you have already made them. you hvae good teaching skills. Appreciate all the work you are doing. Thanks

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    Жыл бұрын

    Thanks alot .. Please share the channel with your friends and groups.

  • @Govind-Singh9447
    @Govind-Singh9447 Жыл бұрын

    Thankyou for this masterpiece❤️, waiting for another parts.

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    Жыл бұрын

    Sure .. very very soon

  • @manjeshsno596
    @manjeshsno59611 ай бұрын

    Really it was very much informative , please do the session on advanced shell scripting as well. Thank you so much Abhi.

  • @udhayadeepab
    @udhayadeepab4 ай бұрын

    hi, you are aawesome Teacher. you explained the content without boring looking to learn more devops from you. thankyou

  • @Sunil-ek3cw
    @Sunil-ek3cw Жыл бұрын

    Very nice session waiting for second part with realtime use cases

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    Жыл бұрын

    Will upload soon

  • @swetasoni148
    @swetasoni1485 ай бұрын

    Hi Abhishek, you are doing a great job! you have explained everything in a simplest manner. Really grateful that i found your channel. Thank you :)

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    5 ай бұрын

    So nice of you

  • @bcyrille
    @bcyrilleАй бұрын

    I discovered accidentally this chanel but this serie is wonderfull. All topics are clear and well explained. Thank you very much for providing us such a good content. This serie is definetly my companion on my DevOps training journey 😊

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    Ай бұрын

    Glad you enjoy it!

  • @gouthammahankali4464
    @gouthammahankali4464 Жыл бұрын

    Thank you for sharing the good content which will help us to learn easily and we eagerly waiting for the advanced concepts of shell scripting with real time experience

  • @n4naveeen
    @n4naveeen Жыл бұрын

    Thank you for this video. you make things very easy to understand! Looking forward to videos on Data science, AI, ML if possible.

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    Жыл бұрын

    For now the channel is focused on Devops .. Thank you

  • @AndyO-cp9yi
    @AndyO-cp9yiАй бұрын

    To be honest, you are a great teacher in, I admire your approach to teaching which makes it extremely simple to grasp even complex concepts. I have seen many devops videos online which do not come anywhere close to this material in terms of delivery and topics. More importantly, you created an extremely valuable content like this for free. Many thanks Abhishek, I am satisfied and willing to support your work!!!

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    Ай бұрын

    ❤️❤️❤️

  • @Cloud-DevOps_Aspirant
    @Cloud-DevOps_Aspirant Жыл бұрын

    The way of your teaching is excellent @abhishek hatsoff🙂

  • @svnr1980
    @svnr19809 ай бұрын

    Hi Abhishek, Your way of teaching is literally so simple and engaging. Please keep up the great work...❤

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    9 ай бұрын

    😍

  • @sushmithakr4470
    @sushmithakr447011 ай бұрын

    Your content is very good, you are a very good teacher that breaks down complex things into simple, keep making such content. power to you✊

  • @sindhusinchu2958

    @sindhusinchu2958

    11 ай бұрын

    Hi

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    11 ай бұрын

    Thanks a lot!

  • @rohitkamble6602
    @rohitkamble6602 Жыл бұрын

    Your way of explaining is very easy and easy to grab ... Very informative content 👍👍👌👌

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    Жыл бұрын

    Glad you liked it

  • @marinenipavankumar7369
    @marinenipavankumar73696 ай бұрын

    Hi Abhishek, Thanks for making video on shell script, it is very easy to understand and can learn quickly. Thank you so much once again.

  • @satyam1543
    @satyam1543 Жыл бұрын

    very good tutorial for learning linux fundamentals and shell scripting

  • @AmrutaWagh-kb3yv
    @AmrutaWagh-kb3yv11 ай бұрын

    yes sir please make advanced concepts also thank you. As you complete the Q&A on shell scripting now we want implement advanced one.

  • @vinayaka5144
    @vinayaka5144 Жыл бұрын

    I thought that it is very much simple way of teaching shell scripting. Thank you!

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    Жыл бұрын

    🙏

  • @suryanarayananb9517
    @suryanarayananb95175 ай бұрын

    Useful, especially your constant revision on the video helped. I noticed it was 2.20 AM while recording on your laptop, Effort..🔥

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    5 ай бұрын

    🔥🔥🔥

  • @robotech2024
    @robotech2024 Жыл бұрын

    Thank you so much for providing such a wonderful content regarding Linux Shell scripting for me like a Beginner. Please do advanced topics in the same. The way of explaining the concept is simple and easy to understand..

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    Жыл бұрын

    please check the shell scripting playlist, there are more videos

  • @Vishwask22
    @Vishwask225 ай бұрын

    Revised some Linux cmds too, Thanks for creating this video. Now moving towards your advanced concept vdo Abhishek. Thanks.

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    5 ай бұрын

    Most welcome!

  • @nagababunalluri5059
    @nagababunalluri5059 Жыл бұрын

    Firstly, I didn't have any confusion or ambiguity in between of the complete video while you are explaining. thanks

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    Жыл бұрын

    🙏

  • @pritip1546
    @pritip154611 ай бұрын

    Hi Abhishek........ in very easy method u r explaining... Very useful... And i started Devops zero to hero journey..... thank you so much....

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    11 ай бұрын

    All the best

  • @babugowda1683
    @babugowda1683 Жыл бұрын

    Absolutely we need advanced topics Abhi, appreciate your work 😍

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    Жыл бұрын

    Definitely

  • @pavansatishj8290
    @pavansatishj8290 Жыл бұрын

    It's a wonderful session sir, and easy to understand for begginers, please do more sessions.

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    Жыл бұрын

    Glad that you liked it

  • @anuj4269
    @anuj4269 Жыл бұрын

    Hi Abhishek, This video is really helpful, I appreciate your time and efforts that goes into bring these videos live. I have a question though regarding executor command. As you mentioned bash ignores the statements that starts with '#', how does it identifies executor in the first statement though? and Does linux use different special characters to let the different executors identify comments ?

  • @user-ww9eh2nw2m
    @user-ww9eh2nw2m Жыл бұрын

    Thank you for the Wonderful session one step forward to the DevOps journey.Thanks, Abhishek keep going 🤩

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    Жыл бұрын

    Awesome

  • @chandrasekaran4441
    @chandrasekaran44414 ай бұрын

    Easy to undersatnd,Thanks ur valuable time for spending this.

  • @lakshmitutorial3850
    @lakshmitutorial3850 Жыл бұрын

    Sir I never and ever see this type of explanation on shell script.i learn alot in this vedio. abishek garu tq sooo much.ur effort for us is speechless. Pls continue the vedios

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    Жыл бұрын

    Thanks alot

  • @hiteshhatwarbs1911
    @hiteshhatwarbs19113 ай бұрын

    Thank you for such an engaging and detailed video.

  • @VRR455
    @VRR45517 күн бұрын

    Thank you bro your teaching is very clear. I started DevOps Zero to Hero a week back on 5th day video I had doubts as you were showing on Mac and i am on Windows.. I watched that video 3 times and could clear most of my doubts.

  • @Manish_Cyber_Expert
    @Manish_Cyber_ExpertАй бұрын

    Devta aadmi ho bhai...Superb Channel

  • @vivekteega
    @vivekteega2 ай бұрын

    Thank you! Please do an advanced video on Shell Scripts too 🙏🏽

  • @saikiran-tt1ww
    @saikiran-tt1ww Жыл бұрын

    Thanks a lot for this video, those real-time scenarios are very helpful, please do make more real time scenarios where do we use this shell scripting in devops role

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    Жыл бұрын

    Sure

  • @KalpanaRadhakrishnan1999
    @KalpanaRadhakrishnan1999 Жыл бұрын

    I am so happy abhishek veeramalla😊😊😊.... Thank you so much 🥰🥰🥰🥰🥰

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    Жыл бұрын

    Welcome Kalpana

  • @ankitaB11
    @ankitaB114 ай бұрын

    The emerging devops star is here. Why didn't i find this channel earlier.

  • @harita5074
    @harita5074Ай бұрын

    Teachers like u are rare 🙏 Your way of explaining each topic is highly commendable ❤Thank you so much 🙏 best part is revising the topic 😍🥰👌

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    Ай бұрын

    It's my pleasure

  • @ventureacc-gf7gf
    @ventureacc-gf7gf3 ай бұрын

    Thank you abhishek, you made my learning life heaven, and you always makes me more motivated..

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    3 ай бұрын

    Glad to hear that

  • @phevos_sk
    @phevos_sk9 ай бұрын

    That was amazing. So much knowledge in such a small time delivered to us in a great understandable way. Thank you very much!

  • @saironique192
    @saironique192 Жыл бұрын

    Excellent Abishek Appreciated Man Please go-ahead with advance concepts with real time usecases

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    Жыл бұрын

    Sure

  • @manojnetla1266
    @manojnetla12662 ай бұрын

    Hey Abhishek... This was really helpful.. Please do the advanced concepts on shell scripting.. You're rocking!!!👍👍

  • @TheCloudEngineer7
    @TheCloudEngineer73 ай бұрын

    Best video ever thanks sir,i need to become a devops like you

  • @venkatallu5337
    @venkatallu53375 ай бұрын

    Perfect video to start Shell learning !

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    5 ай бұрын

    Glad you think so!

  • @archanaakhotlande8301
    @archanaakhotlande83016 ай бұрын

    Hi Abhishek, Your content and way of teaching is excellent. Please do advanced shell scripting videos.. Thank you!

  • @ride_it_
    @ride_it_ Жыл бұрын

    Worth of watching this play list 🤩

  • @nokzeo2777
    @nokzeo2777 Жыл бұрын

    great content. please do a clip on advanced concepts of shell scripting. that would be handy

  • @rohanrustagi7857
    @rohanrustagi7857 Жыл бұрын

    Your content is easy to digest thats why I always suggest your channel to my friends

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    Жыл бұрын

    Thank you so.much ❤️

  • @user-il4kq3pv1k
    @user-il4kq3pv1k7 ай бұрын

    Dear Sir, I am extremely grateful to you. Your videos have been very helpful for me. Thank you very much.

  • @arundhathidanda7640
    @arundhathidanda7640 Жыл бұрын

    Good content, please continue with advance concepts in shell scripting

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    Жыл бұрын

    🙏

  • @jerricavalentine3637
    @jerricavalentine3637Ай бұрын

    Please create a video on advanced concepts of Linux for Devops. Thank you so much for your content!

  • @itsmanztube.5809
    @itsmanztube.5809 Жыл бұрын

    cool bro , precise with concise ,go ahead with Advanced shell scripts which really useful to devops freshers like us.

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    Жыл бұрын

    Sure

  • @alamzia2905
    @alamzia290510 күн бұрын

    The way you explain is top notch.

  • @Cloudnp9458
    @Cloudnp94584 ай бұрын

    Role of shell scripting im devops- 1.Infra maintainance 2.code management using git repository 3. configuration management (automation of cronjobs, switching to dir where scripts are present) Store shell script in git repository. Monitor node health of 1000 of machine. Out of 1000 of VMs, you will find out memory is completely used on which vm. Use cronjobs too, by login into each of machine and send email notifications which machine has issue with memmory and cpu usage.

  • @mikeyou7225
    @mikeyou72255 ай бұрын

    awesome job Abhishek keep it up brother

  • @sarjibkarki1258
    @sarjibkarki1258 Жыл бұрын

    You are an amazing teacher. Please make a video on advanced concepts of bash scripting and cron jobs. Also would be very grateful if you could demo some real world DevOps problem solving situations. Thanks a lot!

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    Жыл бұрын

    Great suggestion!

  • @sarjibkarki1258

    @sarjibkarki1258

    Жыл бұрын

    @@AbhishekVeeramalla Just curious, how long might it take to complete all 45 days content?

  • @user-pi7vu9po9i
    @user-pi7vu9po9i8 ай бұрын

    Excellent video Abhishek you are champ and clarified my doubts about shell scripts.

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    8 ай бұрын

    😍

  • @dachuudachuu8022
    @dachuudachuu80226 ай бұрын

    tqsm brother it helped me lot understand the concept in an easy way may God bless you.

  • @samuelmunoh5655
    @samuelmunoh565511 ай бұрын

    Thank you, Abhishek, it was great learning. Just as you said I might be late 😂 please continue with the advanced depth in Scripting. Thank you.

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    10 ай бұрын

    My pleasure 😊

  • @sohamkasar7218
    @sohamkasar7218 Жыл бұрын

    You r the alakh Pandey for engineering students 💯❤ thanks for sharing your knowledge with us really helpful 😊

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    Жыл бұрын

    Means alot . thank you

  • @krishnakumarkumar5710

    @krishnakumarkumar5710

    8 ай бұрын

    He is Devops wallah

  • @PriyanshuSingh-ty7xw
    @PriyanshuSingh-ty7xw7 күн бұрын

    I keep saying @AbhishekVeeramalla your way of teaching is Invincible.

  • @Unique678Unique67
    @Unique678Unique6711 ай бұрын

    I learn lot sir please do more best for all Devops guys I want real use case more and more sir please upload many more. Tq so much

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    11 ай бұрын

    sure

  • @manjunathbellakatti8278
    @manjunathbellakatti82789 ай бұрын

    I am really very thankful to you sir 🙏 You explained the concepts in simple manner...

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    9 ай бұрын

    It's my pleasure

  • @prabakaranramasamy1641
    @prabakaranramasamy1641 Жыл бұрын

    You tutorial was awesome i have never completed a full video recently bcoz it may be boring or for other reasons like content was not depth. But this video is so good and also please do another video for advanced.👏

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    Жыл бұрын

    awesome

  • @mixed_feelings_bro
    @mixed_feelings_bro Жыл бұрын

    Bro you are really awesome. And please do remaining videos with same patience.

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    Жыл бұрын

    Thanks and sure

  • @abdulmohammed3805
    @abdulmohammed380511 ай бұрын

    Thanks for explaining in a detailed manner.

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    11 ай бұрын

    Most welcome !!

  • @Kavi1444
    @Kavi14447 ай бұрын

    thank you So much to make me understand shell Script in a very simple way ... 🙏🙏🙏🙏

  • @surekhach1422
    @surekhach1422 Жыл бұрын

    I felt it's a Linux basic commands.but last ten mins is imp for DevOps. Thanks for the info.

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    Жыл бұрын

    Sure ..Thanks

  • @anirudhadhithya5071
    @anirudhadhithya5071 Жыл бұрын

    great work sir! LOOKING FOR MORE VIDEOS!!

  • @AbhishekVeeramalla

    @AbhishekVeeramalla

    Жыл бұрын

    Thanks Anirudh

Келесі