Changes between Version 9 and Version 10 of Csle2022/Agenda/scriptingandgithub


Ignore:
Timestamp:
Nov 1, 2022, 2:24:07 PM (2 years ago)
Author:
deepthi
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Csle2022/Agenda/scriptingandgithub

    v9 v10  
    177177}}}
    178178
     179===== How to execute commands with back ticks =====
     180
     181If you need to include the output of a complex command in your script, you can write the statement inside back ticks.
     182
     183syntax:
     184
     185{{{
     186var= ` commands `
     187}}}
     188
     189Example: Suppose we want to get the output of a list of mountpoints with tmpfs in their name. We can craft a statement like this: df -h | grep tmpfs.
     190
     191{{{
     192#!/bin/bash
     193
     194var=`df -h | grep tmpfs`
     195echo $var
     196}}}
     197
     198===== How to Automate Scripts by Scheduling via cron Jobs =====
     199
     200Cron is a job scheduling utility present in Unix like systems. Jobs can be scheduled to execute daily, weekly, monthly or in a specific time of the day. Automation in Linux heavily relies on cron jobs.
     201
     202Below is the syntax to schedule crons:
     203
     204{{{
     205# Cron job example
     206* * * * * sh /path/to/script.sh
     207}}}
     208
     209Here, * represent represents minute(s) hour(s) day(s) month(s) weekday(s), respectively.
    179210
    180211= Github administration =