This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/bin/bash | |
| folder="/mnt/drive/demo" | |
| source="all-with-cats.csv" | |
| word=",persian," | |
| IFS=',' | |
| read -ra split <<< $word | |
| destination=${split[1]} | |
| #just clearing variable | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #not #!bin/bash script, its sequence of commands, can be altered to run as script | |
| sudo apt update | |
| sudo apt upgrade | |
| #First install apache2 | |
| sudo apt install apache2 | |
| # it installed apache version 2.4.29-1ubuntu4.13, may vary in future | |
| sudo apt install php libapache2-mod-php php-mysql | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | ## Not a script #!/bin/sh just sequence of commands, can make it executable after reviewing | |
| #first install plugins | |
| sudo su - | |
| cd /opt/ | |
| apt-get install -y build-essential | |
| wget https://nagios-plugins.org/download/nagios-plugins-2.3.3.tar.gz | |
| tar zxf nagios-plugins-2.3.3.tar.gz | |
| cd nagios-plugins-2.3.3 | |
| ./configure | |
| make |