Suppose I have two functions function_arguments1 and function_agruments2 which are accepting parameters. I want to call the function name:- function_argument1, from python script. How should I call the function_arguments1 from Python passing parameters from python script.
#!/bin/bash
#Script to pass and access arguments
function_arguments1(){
echo $1
echo $2
echo $3
echo $4
echo $5
}
function_argument2(){
echo $1
echo $2
}
#Calling function_arguments2
function_arguments2 "Please""Help"