Shell Scripting & Linux Interview Questions for DevOps Engineers | Bash Zero to Hero |

Поділитися
Вставка
  • Опубліковано 5 гру 2022
  • Support my work
    www.buymeacoffee.com/abhishekprd Hi Everyone, Welcome back to my channel.
    In this video, Some most commonly asked Shell Scripting Interview Questions. It is very important for every devops engineers to have answers to these questions.
    About me:
    -----------------
    LinkedIn: / abhishek-veeramalla-77...
    GitHub: github.com/iam-veeramalla
    Medium: / abhishekveeramalla-av
    UA-cam: / @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.

КОМЕНТАРІ • 237

  • @VDenys
    @VDenys 5 місяців тому +89

    0:47 List some of the commonly used shell commands ?
    3:18 Write a simple shell script to list all processes
    5:30 Write a script to print only errors from a remote log
    9:52 Write a shell script to print numbers divided by 3 & 5 and not 15
    19:24 Write a script to print number of "S" in Mississippi
    23:36 How will you debug the shell script?
    23:59 What is crontab in Linux? Can you provide an example of usage?
    24:58 How to open a read-only file?
    25:24 What is a difference between soft and hard link?
    28:05 What is a difference between break and continue statements ?
    30:58 What are some disadvantages of Shell scripting?
    31:45 What a different types of loops and when to use?
    32:19 Is bash dynamic or statically typed and why?
    33:23 Explain about a network troubleshooting utility?
    35:06 How will you sort list on names in a file ?
    35:43 How will you manage logs of a system that generate huge log files everyday?
    "I think it will be convenient, give it a like."

  • @nikhilnirbhavane1005
    @nikhilnirbhavane1005 11 місяців тому +33

    Thank you Abhishek !! :)
    Questions which I faced in interview that people should be aware of.
    1) what is sticky bit in linux
    2) how do we verify if out shell script is executed successfully?
    3) what is the flag to check if file is empty or not?
    4)What is positional parameter ?
    5)what is command substitution?
    6)How do you set crontab?
    7) how will your .sh script configured in CRONTAB will run when system is restarted?

    • @Deva2596
      @Deva2596 10 місяців тому +1

      Thanks for posting:)

    • @tapasghosh9802
      @tapasghosh9802 3 місяці тому

      Hey nikhil ..thanks for sharing

    • @SathyaManikanta
      @SathyaManikanta 12 днів тому +3

      Sure, let's go through each of these interview questions one by one with explanations.
      ### 1. What is a Sticky Bit in Linux?
      The sticky bit is a special permission that can be set on directories. When the sticky bit is set on a directory, only the owner of the directory, the owner of the file, or the root user can delete or rename the files within that directory.
      #### Example
      To set the sticky bit on a directory:
      ```bash
      chmod +t /path/to/directory
      ```
      To check if the sticky bit is set:
      ```bash
      ls -ld /path/to/directory
      ```
      You will see a `t` at the end of the permissions:
      ```
      drwxrwxrwt 2 root root 4096 Jul 1 12:34 /path/to/directory
      ```
      ### 2. How Do We Verify if Our Shell Script is Executed Successfully?
      The exit status of a command can be checked using the special variable `$?`. A zero exit status (`0`) indicates success, while a non-zero value indicates failure.
      #### Example
      ```bash
      #!/bin/bash
      your_command
      if [ $? -eq 0 ]; then
      echo "Command executed successfully"
      else
      echo "Command failed"
      fi
      ```
      You can also use the `set -e` option at the beginning of your script to exit the script immediately if any command returns a non-zero status.
      ### 3. What is the Flag to Check if a File is Empty or Not?
      The `-s` flag in the test command (`[ ... ]`) checks if a file is not empty.
      #### Example
      ```bash
      #!/bin/bash
      file="path/to/yourfile"
      if [ -s "$file" ]; then
      echo "File is not empty"
      else
      echo "File is empty"
      fi
      ```
      ### 4. What is a Positional Parameter?
      Positional parameters are variables that hold the arguments passed to a shell script or function. They are referenced using `$1`, `$2`, `$3`, etc., where `$1` is the first argument, `$2` is the second, and so on. `$0` refers to the script or command itself.
      #### Example
      ```bash
      #!/bin/bash
      echo "First argument: $1"
      echo "Second argument: $2"
      ```
      ### 5. What is Command Substitution?
      Command substitution allows you to capture the output of a command and use it as an argument in another command. It can be done using backticks (\`) or `$(...)`.
      #### Example
      Using backticks:
      ```bash
      current_date=`date`
      echo "Current date is $current_date"
      ```
      Using `$(...)`:
      ```bash
      current_date=$(date)
      echo "Current date is $current_date"
      ```
      ### 6. How Do You Set Crontab?
      Crontab is used to schedule commands to be executed periodically. You can edit the crontab file for your user by running:
      ```bash
      crontab -e
      ```
      This will open an editor where you can add your cron jobs. The format is:
      ```
      * * * * * command_to_be_executed
      ```
      The fields represent:
      1. Minute (0 - 59)
      2. Hour (0 - 23)
      3. Day of month (1 - 31)
      4. Month (1 - 12)
      5. Day of week (0 - 7) (Sunday is 0 or 7)
      #### Example
      To run a script every day at 2 AM:
      ```bash
      0 2 * * * /path/to/your_script.sh
      ```
      ### 7. How Will Your .sh Script Configured in CRONTAB Run When the System is Restarted?
      To ensure a script runs at startup, you can use the `@reboot` cron directive.
      #### Example
      To add a script that runs at system startup:
      ```bash
      @reboot /path/to/your_script.sh
      ```
      This entry in the crontab will execute `your_script.sh` every time the system boots up.
      ### Summary
      1. **Sticky Bit**: Special permission on directories preventing users from deleting or renaming files they do not own.
      2. **Verify Script Execution**: Check `$?` for the exit status of the last command.
      3. **Check If File is Empty**: Use `-s` flag.
      4. **Positional Parameter**: Variables holding script arguments, accessed via `$1`, `$2`, etc.
      5. **Command Substitution**: Capturing command output using `$(...)` or backticks.
      6. **Set Crontab**: Use `crontab -e` to schedule jobs.
      7. **Run Script at Startup**: Use `@reboot` in crontab.
      These are some essential Linux concepts and commands that can help in understanding and managing a Unix-like environment efficiently.

    • @sindhudevapati6583
      @sindhudevapati6583 2 дні тому

      @@SathyaManikanta Thank you for providing the answers.

  • @suryasurya-tj6gu
    @suryasurya-tj6gu 6 місяців тому +27

    Abhishek, Can you please start Shell Scripting in advance level. You are the best mentor.

  • @Deva2596
    @Deva2596 10 місяців тому +33

    ### Summary:
    - [00:01] 🎯 Understanding and mastering shell scripting interview questions involves a structured approach, starting from basics and building up to advanced topics.
    - [01:12] 💼 Interviewers often begin by asking about **commonly used shell commands** to gauge your practical familiarity with scripting in daily tasks.
    - [04:15] 📜 **Demonstrating simple shell scripts**, such as **listing all processes**, showcases your ability to work effectively on Linux systems. (`ps -ef` )
    - [06:30] 🛠 Using the `curl` command and piping output to `grep` allows you to fetch and filter specific lines from remote log files.
    - [09:03] 🔢 Crafting scripts to manipulate numbers based on conditions, like divisibility by 3, 5, and exclusion of 15, demonstrates algorithmic thinking.
    - [11:01] 🖋 Writing scripts step-by-step, explaining each segment as you build, showcases your clarity of thought and logical progression.
    - [14:31] 🔄 Employing for loops to iterate through a range of numbers, combining with logical conditions, allows effective script control.
    - [19:08] 🔠 Manipulating strings like counting occurrences of a specific character ("s" in "Mississippi") highlights your ability to process and analyze textual data in scripts.
    - [21:40] 📜 The `grep` command with `o` option filters text for specific patterns.
    - [22:05] 📜 `wc -l` counts lines in a file; used in conjunction with `grep`.
    - [22:46] 📜 Combine `grep` and `wc` to filter and count specific patterns.
    - [23:13] 📜 Practice is crucial to mastering shell scripting techniques.
    - [24:09] 📜 Cron tab automates tasks, scheduling scripts to run at specific times.
    - [25:04] 📜 Use `-r` option to open a file in read-only mode with `vim`.
    - [25:32] 📜 Differentiate between soft links and hard links; understand use cases.
    - [28:08] 📜 Explain the concepts of `break` and `continue` statements in loops.
    - [30:59] 📜 Address disadvantages of shell scripting, focusing on practical scenarios.
    - [31:54] 📜 Understand the types of loops (for, while, do-while) and their use cases.
    - [32:20] 📜 Shell scripting is dynamically typed; differences from statically typed languages.
    - [33:32] 📜 Utilize `traceroute` and `tracepath` commands for network troubleshooting.
    - [34:01] 📜 Use the `sort` command for sorting and listing names in files.
    - [35:10] 📜 Employ `logrotate` to manage and maintain large log files efficiently.
    - [36:22] 📜 Explain how `logrotate` helps manage logs generated by applications.

  • @niroopbs2141
    @niroopbs2141 Рік тому +2

    Thank you so much for sharing the knowledge. You have covered almost everything in this video.

  • @aravindreddy1303
    @aravindreddy1303 Рік тому +7

    Hi @Abhishek.Veeramalla ,
    Thanks for your first two videos and for this video. I would like to see more of it in relation to the Devops Engineer. You are good at what you are doing. Keep going and I wish you all the best.
    Thanks

  • @abdurahmanfaisal6835
    @abdurahmanfaisal6835 5 місяців тому

    Thanks Abhishek, doing so much effort for free. Really appreciate 🙏🏻

  • @TheSeeker001
    @TheSeeker001 3 місяці тому +1

    Hi Abhishek, that's very interesting to know these interview point of view questions. That's very informative. Please do more of these.
    Part -3 of Shell Scripting done :)

  • @mynameisram6795
    @mynameisram6795 Рік тому +7

    Really superb
    In youtube i have never seen this type of shellscripting, i really liked this class.

  • @SRG-n3d
    @SRG-n3d 8 місяців тому +5

    Awesome,wonderful 3 videos session on shell scripting. By practicing all these we will get confident on scripting. Thank you.

  • @karanjaggi4083
    @karanjaggi4083 3 місяці тому

    Thanks abhishek for such a wonderful content

  • @sayyedrabbani972
    @sayyedrabbani972 4 місяці тому +1

    Done with shell scripting moving ahead thankyou @abhishek anna for making the concepts easy.

  • @thotapraveenbabu5087
    @thotapraveenbabu5087 Рік тому +2

    U have good teaching skills sir... thank you for educating us keep posting videos sir

  • @user-yi3ry3cq5q
    @user-yi3ry3cq5q 7 місяців тому +2

    Thank u so much abhishek for providing such a wonderful content

  • @santhoshar8816
    @santhoshar8816 Рік тому

    such a awsome explaination abhi sir 😍😍

  • @maduboy4898
    @maduboy4898 4 місяці тому +1

    You are the best teacher I have ever learned . I am from sri lanka and . I started learning devops in just 3 days . I gain a lot of knowledge from you . Thank you boss

  • @sowmiyabaskar7089
    @sowmiyabaskar7089 Рік тому +1

    Thanks for your Video ..explained everything in a simple way which makes us to understand well

  • @sufiyanshaikh4569
    @sufiyanshaikh4569 Рік тому +1

    Thankyou so much with your explanation and teaching skills shell scripting concepts is clear for me ❤️❤️❤️

  • @vikas9890
    @vikas9890 6 місяців тому +4

    Watched all 3 sessions. It was fantastic crisp and clear. Thanks a lot sir and please make some more.

  • @abhishekgowda7383
    @abhishekgowda7383 Рік тому +1

    i have watched this complete playlist,it is really helpful,thank u broh,keep posting content like this..

  • @rupeshmadne9925
    @rupeshmadne9925 11 місяців тому +3

    Hi @Abhishek Veeramalla, Really you are a great mentor, teacher, trainer, expert & all for Cloud, Linux & DevOps domain. Thanks for such great sessions for free. Thanks keep it up bhai!

    • @AbhishekVeeramalla
      @AbhishekVeeramalla  11 місяців тому +1

      You are most welcome

    • @subiksha1278
      @subiksha1278 11 місяців тому

      @@AbhishekVeeramallapls do more videos on shell scripting advanced

  • @pothugangireddy6339
    @pothugangireddy6339 Рік тому +11

    You have good teaching skills sir... thank you for educating us keep posting videos sir !

  • @anilvenkatesh6
    @anilvenkatesh6 10 місяців тому

    This is very interesting and most useful one, once again Thanks Abhishek for your time and help.

  • @amolbar
    @amolbar 11 місяців тому +4

    Very useful information you have provided in this session. You are doing great job. Your teaching style is very good.

    • @AbhishekVeeramalla
      @AbhishekVeeramalla  11 місяців тому

      Most welcome !!

    • @barathamudha2607
      @barathamudha2607 8 місяців тому

      @@AbhishekVeeramalla nice teaching bro easy to understand as a begginer thank you for making this session for free

  • @dummymail6029
    @dummymail6029 4 місяці тому

    great video thanks a lot :) ahishek

  • @KalpanaRadhakrishnan1999
    @KalpanaRadhakrishnan1999 Рік тому +1

    Tq so much abhishek veeramalla😊😊😊😊😊

  • @sathishdarshanala6137
    @sathishdarshanala6137 Рік тому +1

    thanks abisheck learnt a lot from your videos

  • @user-pm3sp5od9s
    @user-pm3sp5od9s 6 місяців тому +2

    completed all three videos in shell script i have to practice once again to get confidence thanks abhisheik

  • @pothugangireddy6339
    @pothugangireddy6339 Рік тому +1

    any way your video's very useful for me, Thanks, Thanks,Thank you so much Dude !💝

  • @AmrutaWagh-kb3yv
    @AmrutaWagh-kb3yv 11 місяців тому +1

    really great abhishek sir ji 👍🏻

  • @subiksha1278
    @subiksha1278 11 місяців тому +1

    @AbhishekVeeramalla pls do more series on Advanced shell scripting.. much needed.

  • @ashishpandey8766
    @ashishpandey8766 4 місяці тому

    Thanks, Abhi

  • @bollurahul
    @bollurahul 2 місяці тому +1

    very well explained abhishek. I never wrote a shell script so far being an experienced DevOps engineer but after watching your videos, my confidence levels boosted in a way that from now on even I also will start writing the shell scripts. thanks a lot for your videos and hoping for more upcoming videos that will help lot of people.
    best wishes!!

  • @saurabhjain8904
    @saurabhjain8904 Рік тому +1

    Sir u r great, want to learn devops from you

  • @prithvivishwanath
    @prithvivishwanath Рік тому +2

    completed today .... i am confident i will crack shell scripting and devops interviews questions ..
    thanks - Abhi

  • @rakshithhs757
    @rakshithhs757 Рік тому +1

    subscribed, How well you will explain,thak you

  • @ravipanavi
    @ravipanavi 8 місяців тому +6

    Hi Abhi, Kindly continue the Advance Shell scripting videos TQ

    • @AbhishekVeeramalla
      @AbhishekVeeramalla  8 місяців тому +1

      sure, noted

    • @vikasthakur6513
      @vikasthakur6513 7 місяців тому

      Yes, please and if possible please make videos on ansible as well. Thank you Sir dil se.

  • @koti3228
    @koti3228 11 місяців тому +2

    The way u r teaching is really good and coming to shell scripting,as a devops engineer where and when we use in our daily activities in the real time please make a video on that so it could help....Thankyou bro

    • @AbhishekVeeramalla
      @AbhishekVeeramalla  11 місяців тому

      Thanks

    • @koti3228
      @koti3228 11 місяців тому +2

      @AbhishekVeeramalla Do you have any more scenario based on shell scripting..if u have please share..Thanks bro

  • @user-zd9xu7wt9c
    @user-zd9xu7wt9c 8 місяців тому +1

    thank you wonderful Video,
    I think in advanced shell scripting we can see some automation and best practices on cron job and log rotates !

  • @emmanuelchaibi1184
    @emmanuelchaibi1184 5 днів тому

    Thank you sir

  • @manojtalluri5087
    @manojtalluri5087 8 місяців тому +1

    good one

  • @Zeliebenard639
    @Zeliebenard639 Рік тому +2

    very explicit, 👏

  • @bikramsingh9416
    @bikramsingh9416 10 місяців тому

    Thanks, its too good session
    Can you share any example video or script related to logrotate.

  • @barathamudha2607
    @barathamudha2607 8 місяців тому +1

    thanks a lot making this video

  • @shivavinay9074
    @shivavinay9074 Місяць тому

    Thank you.

  • @SathyaManikanta
    @SathyaManikanta 12 днів тому

    19:25 few ways of doing it
    Method 1: Using grep Command
    #!/bin/bash
    x=mississippi
    # Count occurrences of 's' using grep
    echo "$x" | grep -o "s" | wc -l
    Method 2: Using tr command
    #!/bin/bash
    x=mississippi
    # Count occurrences of 's' using tr
    echo "$x" | tr -cd 's' | wc -c
    Explanation:
    tr -cd 's': Translates and deletes all characters except 's', leaving only 's' characters.
    wc -c: Counts the number of remaining characters, which corresponds to the number of 's' in the string.
    Method 3 : Using awk
    #!/bin/bash
    x=mississippi
    # Count occurrences of 's' using awk
    echo "$x" | awk -F's' '{print NF-1}'
    Explanation:
    awk -F's' '{print NF-1}':
    -F's' sets the field separator to 's'.
    NF is the number of fields, which would be the number of parts the string is divided into by 's'.
    NF-1 gives the number of 's' in the string.

  • @skyhigh7424
    @skyhigh7424 Рік тому +1

    Very good content

  • @AshokKumar-kl4et
    @AshokKumar-kl4et Рік тому +1

    Worth spending time in this

  • @MdAshraf007
    @MdAshraf007 7 місяців тому +1

    It should be "vi -R " to open it in read mode.

  • @Divyaperuri
    @Divyaperuri 24 дні тому

    Hi Abhishek , Please do the videos on Shell Scripting in advance level also.

  • @POLITICALPOINTOFVIEW
    @POLITICALPOINTOFVIEW Рік тому +1

    Nice bro

  • @manupriyar8169
    @manupriyar8169 6 місяців тому

    Hi Abhi,, done with shell scriptibg course from your playlist.. You can help us more in it.. Thanks once again❤

  • @ravindraravi7435
    @ravindraravi7435 4 місяці тому +1

    Thank you ^^

  • @satyamjaiswal5715
    @satyamjaiswal5715 23 дні тому

    Thanks ❤

  • @deepak8914
    @deepak8914 9 місяців тому +2

    Hi can you post list of command which you used in this playlist, its esay to refer from git repository, I am followed your AWS series it's very nice document you maintain

  • @AjayKumar-rz6hz
    @AjayKumar-rz6hz Рік тому +1

    Thank you very much for such helpful vedios to prepare for the interview. I have a second round tomorrow for Devops . Could you please guide me which one should I watch

    • @AbhishekVeeramalla
      @AbhishekVeeramalla  Рік тому +1

      Hey, That's awesome .. All the best
      It depends on the JD. I think we have covered most of the scenarios and tools. So checkout the playlists

  • @faisaliqbal7382
    @faisaliqbal7382 Рік тому +1

    thnx boss.

  • @TheMightyWalk
    @TheMightyWalk 9 місяців тому

    Thanks

  • @anushakollikonda8363
    @anushakollikonda8363 Рік тому +1

    Thank you

  • @IJAZAhmed-ji7vj
    @IJAZAhmed-ji7vj Рік тому

    please make an video on networking commands.

  • @HaseenaSA-wx4mi
    @HaseenaSA-wx4mi 2 місяці тому

    Make video on advanced shell script commands and trap in details

  • @user-ds5wn7bx7o
    @user-ds5wn7bx7o 5 місяців тому

    Abhishek bro, please start a advance to hero shell scripting videos

  • @user-kk3sw2uv9o
    @user-kk3sw2uv9o Місяць тому

    tq sir

  • @nagajanardhanmunaganuri430
    @nagajanardhanmunaganuri430 10 місяців тому

    1.Thanks for the video , i have question , if application is getting down or getting 404 .. 300 ..etc what should we cheked in logs ..means as application logs or apache logs or gc.logs or error.logs can please explain us for each log like what uses of logs.
    If you make it a video it will more help to us .
    2.Can please explain me apache rules like inbound and outbound some says that in real-time do white list end point in outbound /inbound
    3. Confluence page like user jornny make simple example
    4. Can pleas exaplane the urca calls like request-out and response-in logs in monitering tools like splunk or other tools

  • @venkateshmekala7321
    @venkateshmekala7321 Рік тому +2

    Hi Abhishek
    Can you do the Powershell Videos also and it will be helpful lot of people

  • @lekkalanaveenkumarreddy1539
    @lekkalanaveenkumarreddy1539 5 днів тому

    hello ,the video was nice but i kinda felt like you were rushing it, if its possible can you explain all the networking commands and other scripts in detail

  • @gummadinagalaskhmi
    @gummadinagalaskhmi Місяць тому +1

    Can you please do the series for powershell too

  • @arundhathidanda7640
    @arundhathidanda7640 Рік тому +6

    Can you please make videos on powershell scripting aswell

  • @vasujhawar.6987
    @vasujhawar.6987 7 днів тому

    5:15 No need of Field delimitter -F as awk has whitespace as Field seperator by default.

  • @pavankumarsd9314
    @pavankumarsd9314 4 місяці тому

    Start adavance level Brother we are waiting

  • @prakashbohara718
    @prakashbohara718 11 місяців тому

    nice video sir ..
    diff between tar gzip and zip ?

  • @rohithsj5066
    @rohithsj5066 10 місяців тому +1

    Hi Abhishek, thank u for your excellent videos. I wanted to switch from developer to deveops domain. I'm currently woking as angular developer but there is no consistency of gaining any knowledge and improvisation due to lack of projects. Is it good choice to make my carrier to deveops domain. If it so can i showcase my experience as deveops engineer and switch on ???
    Kindly do the needful. Thank you.

  • @harisheoran
    @harisheoran 8 місяців тому

    amazing sir,
    One question though sir, why dont we have a discord or slack server so that we can talk to other people who are learning also

    • @AbhishekVeeramalla
      @AbhishekVeeramalla  8 місяців тому +1

      We tried in the past. Once more people are added, it became spam. I have seen alot of groups and it is the same.
      So there is only a dedicated group for members who subscribed to the join button

    • @harisheoran
      @harisheoran 8 місяців тому

      @@AbhishekVeeramalla ok didn't know about groups of subscribed button members.
      Are there any other benefits sir of this group?
      And are you still available on Top mate sir, I posted a request there but no response sir.

  • @mullapudirajaram796
    @mullapudirajaram796 Рік тому +2

    Anna i would like to ask you do on this flow don't stop inbetween 😢 regarding shell scripting

    • @AbhishekVeeramalla
      @AbhishekVeeramalla  Рік тому

      I did live project as well. Please check the playlist for shell scripting

  • @MiniTour_Vlogs
    @MiniTour_Vlogs Рік тому

    I tried two three examples like mississipi. I have a doubt if mississipi is a single word. If it is a paragraph, how can i find a word from a paragraph ?Please help

  • @lingrajbiradar4416
    @lingrajbiradar4416 Рік тому +1

    please make video on deploying java application to kubernetes with sonar and nexus integration using CI CD Please

  • @vjayaprakash4253
    @vjayaprakash4253 9 місяців тому

    Hi i want to know that shell scripting you have taught is enough to learn or have to go more through any topics

  • @shaktiprasadmishra5239
    @shaktiprasadmishra5239 4 місяці тому

    Can we get more videos on shell scripting and Linux command

  • @sarikagayakwad6727
    @sarikagayakwad6727 5 місяців тому

    Please share the Linux system admin interview preparation procedure

  • @laxmivempati2250
    @laxmivempati2250 11 місяців тому +1

    Can you please make series on powershell scripting

  • @DSD9Talent
    @DSD9Talent 4 місяці тому +1

    Sorry to say but this is true, Nowadays no interviewer ask such straight question, all come with scenario base questions, this wont work for me at all

    • @AbhishekVeeramalla
      @AbhishekVeeramalla  4 місяці тому

      This is for beginners.

    • @amarthyasai17
      @amarthyasai17 2 місяці тому

      Where can i learn scenario based questions? Is there any source? pls share

  • @ssr1882
    @ssr1882 2 місяці тому

    Hi Abhishek,
    Fyi:You missed explaining questions 13 and 20

  • @nidhijaiswal250
    @nidhijaiswal250 3 місяці тому

    Abhishek, Can you please start Shell Scripting in advance level ?

  • @naveenkumarganji8723
    @naveenkumarganji8723 Рік тому +1

    Hi Abishek.... Any known repository where we can find much examples of scripting so that it will be a good hands on for us to practice all of them.
    Btw great content 👏

    • @AbhishekVeeramalla
      @AbhishekVeeramalla  Рік тому +2

      Let me try to find one.

    • @swandev8916
      @swandev8916 Рік тому

      @@AbhishekVeeramalla AZURE ACTIVE DIRECTORY CLOUD VERISON USED SINGLE SIGN OFF MANY MANY PROJECTS , MEAN NOW CLOUD VERSION IRRESPECTIVE OF ANY CLOUD SAME LIKE TERRAFORM , AZURE ACTIVE DRIECTORY ONLY CLOUD VERISION USED ACCOUNT LEVEL , MEAN PUT THIS IP , PUT BASTION, BLOCK THIS IP, NOW RESOLVE IP , RESOLVE DNS ETC

    • @swandev8916
      @swandev8916 Рік тому

      @@AbhishekVeeramalla MY SINCERE SUGGESTION MAKE ONE 5000 RS PHP WEBSITE AND LAUNCH UR DEVOPS COURSE FOR 5000RS SAME AS SHUBHAM AND PRAVIN SINGAMPALLY UR FRIENDS WHY? THATS WHY REAL TRANISTION , HOW , ? ONLY ON WEEKEND CLASSES 4-5 HOURS CLASSES , WHY? IMPACT OK NOT KNOWLEDGE , KNOWLEDE SO MANY HAVE ON ROADS SR NAGAR AND AMERRPEET

  • @Rakeshcloudops
    @Rakeshcloudops 2 місяці тому

    question i was asked during my interview about linux was what is a zombie process

    • @swapnilkhandekar4157
      @swapnilkhandekar4157 4 дні тому +1

      Here the solution ,A zombie process, also known as a defunct process, is a terminated process that has not been fully removed from the process table. It exists in this state until the parent process acknowledges its termination and collects its exit status. Zombie processes consume minimal system resources but still occupy an entry in the process table. { Writing for myself }

  • @piyushbaghel572
    @piyushbaghel572 2 місяці тому

    I am getting Sengmentation Fault : 11

  • @ashwinswain1649
    @ashwinswain1649 Рік тому +1

    Hello Abhishek can you help with how to write Github action workflow to run my bash script which extracts tls key and secret and in the workflow it will also include steps to save those files on github repo folder

  • @shashank7533
    @shashank7533 4 місяці тому

    what's the use of shebang /bin/bash why only use bin instead of etc or other files pls explain

  • @khangohan7288
    @khangohan7288 Рік тому +1

    I was trying to push to github repository but due to large file lfs error come. So I delete the larg file which is not necessary due to which error was coming but still error is there of git LFS. Any suggestions Sir about this problem it is live web server code

  • @timtom3403
    @timtom3403 9 місяців тому

    can someone please explain why we got that at 7:00 along with intended the grep result

  • @user-ic8gl9hy7h
    @user-ic8gl9hy7h 5 місяців тому +1

    sir plz make advonce video plz plz am wating for ur video

  • @KBK23
    @KBK23 4 місяці тому +1

    attendance sir

  • @adewaleayeni-bepo2072
    @adewaleayeni-bepo2072 3 дні тому

    I don't have the key for the OR symbol for the mathematical question. How do I write OR?

  • @biswalnagen66
    @biswalnagen66 Рік тому

    Thanks Abhishek , it’s awesome
    i want to know to crack a product based company DSA is required for Devops Engineer??

  • @sharmilakona9456
    @sharmilakona9456 7 місяців тому

    Can we also use cat command to open a file in read only mode!!?

  • @gudamahendar6992
    @gudamahendar6992 3 місяці тому

    i done this video

  • @solitudeispeaceful
    @solitudeispeaceful Місяць тому

    somebody please confirm this..linux commands shell scripting commands are same..!..wt is shell scripting what is linux commands please explain

  • @24_vishalmourya31
    @24_vishalmourya31 9 місяців тому +1

    I think the 2 you did was incorrect. The number should divide by both 3 and 5. I question it's AND not OR.

  • @jyotsnaswarnakar8345
    @jyotsnaswarnakar8345 11 місяців тому +1

    hi Abhishek, could you please explain fstab

  • @user-xs3qo7bz6j
    @user-xs3qo7bz6j Рік тому +1

    on 18:16 I have a doubt I have followed all that but it is not executing it.. Please could you tell it!!!

    • @smmrok
      @smmrok 3 місяці тому

      Same here