Execute Multiple Scripts From Single Script - Tech Arkit

preview_player
Показать описание
Making use of multiple script files from single script file which make lot of difference in doing the job.

Рекомендации по теме
Комментарии
Автор

Simple and Great example of multiple script👌

jenish
Автор

I need your help
I want to create a script that give alert mail when swap space used 90% for multiple servers.
Would you please help me in doing that

pallavikashyap
Автор

i create html page with moving image ok after how could i add ai.js file to the html same page i wanna get that moving image as background for my
js how can i do that ??
its coming js file up moving image down how to get same border with all file ?

mohamedanshaf
Автор

scenario is - actually i want to check dbbackup file size as well as modified date on network systems( in vpn connection connected lots of systems - where backup folder have dbbackup) by single .sh script. Is it possible or not plz guide.

nishaatole
Автор

Bro please help brother
a bash script that calls one script and after its done call the other one i mean it call another python script

hackermez
Автор

How to run script way multiple txt files get output in daily use datewise

pachaiyappant
Автор

How to call a shell script with argument in another shell?

kushalnishad
Автор

unable to run the script to remote i tried to run the disk script to remote machine but its throwing "sh: sudhan/disk.sh: No such file or directory
"

sudhann
Автор

I want to run two different scripts in the same google sheet,

The first one is that when I say "Yes" then it moves the whole row to the other targeted sheet.

function onEdit(event) {
// assumes source data in sheet named Needed
// target sheet of move to named Acquired
// test column with yes/no is col 4 or D
var ss =
var s =
var r =

if(s.getName() == "Sheet1" && r.getColumn() == 44 && r.getValue() == "Yes") {
var row = r.getRow();
var numColumns = s.getLastColumn();
var targetSheet = ss.getSheetByName("Me");
var target = + 1, 1);
s.getRange(row, 1, 1, numColumns).moveTo(target);
s.deleteRow(row);
}


Meanwhile, I want to run the same script in the same google sheet, just changed the followings,

When the sheet moved to the other sheet by choosing "Yes", but I want to get back the same row to the same sheet by saying "No". The script will be as below


}
function onEdit(event) {
// assumes source data in sheet named Needed
// target sheet of move to named Acquired
// test column with yes/no is col 4 or D
var ss =
var s =
var r =

if(s.getName() == "Me" && r.getColumn() == 44 && r.getValue() == "No") {
var row = r.getRow();
var numColumns = s.getLastColumn();
var targetSheet = ss.getSheetByName("Sheet1");
var target = + 1, 1);
s.getRange(row, 1, 1, numColumns).moveTo(target);
s.deleteRow(row);
}
}


But, I can't run both of them at the same time. Your great support is greatly appreciated in this regard.

Please help me, thanks in advance.

findthetruth