• Home
  • Ubuntu 18.04
    • Whats New?
    • Upgrade Ubuntu
    • Install Java
    • Install Node.js
    • Install Docker
    • Install Git
    • Install LAMP Stack
  • Tutorials
    • AWS
    • Shell Scripting
    • Docker
    • Git
    • MongoDB
  • Funny Tools
  • FeedBack
  • Submit Article
  • About Us
TecAdmin
Menu
  • Home
  • Ubuntu 18.04
    • Whats New?
    • Upgrade Ubuntu
    • Install Java
    • Install Node.js
    • Install Docker
    • Install Git
    • Install LAMP Stack
  • Tutorials
    • AWS
    • Shell Scripting
    • Docker
    • Git
    • MongoDB
  • Funny Tools
  • FeedBack
  • Submit Article
  • About Us

Tag: shell scripts

08 January 2015

Working with WHILE Loop in Bash Shell Scripting

Written by Rahul
Similar to for loop, while loop is also entry restricted loop. It means condition is checked before executing while loop. Mostly it also can do all the works which for loop can do but in uses it has own benefit of use in programming. Syntax: while [ condition ] do // programme to execute...
Read More about Working with WHILE Loop in Bash Shell Scripting
28 July 2013

How to Use Functions in Bash Shell Scripts

Written by Rahul
What is function: A function which can also be referred to as subroutine, procedure is a block of code used for specific tasks. Function’s also have a property called reusability. This tutorial will help you to how to create and use functions in shell scripts. Create First Function in Shell Script Create your first...
Read More about How to Use Functions in Bash Shell Scripts
06 July 2013

How to Debug a Shell Script ??

Written by Rahul
How to Debug a Shell Script ?? We can debug shell script by using “set -xv” command inside shell script or using -xv on command line while executing script. Debug Shell Script by adding Command : $ cat checkdebug.sh #!/bin/bash set -xv #
Read More about How to Debug a Shell Script ??

Popular Posts

  • How to Install Python 3.9 on CentOS/RHEL 7 & Fedora 32/31 0
  • How To Install VNC Server on Ubuntu 20.04 1
  • How To Install NVM on macOS with Homebrew 0
  • (Solved) apt-add-repository command not found – Ubuntu & Debian 0
  • How to Install .NET Core on Debian 10 0
© 2013-2020 Tecadmin.net. All Rights Reserved | Terms  | Privacy Policy