Answers for "export function in shell script"

0

export function in shell script

export command is used to export a variable or function to the environment of all the child processes running in the current shell. export -f functionname # exports a function in the current shell. It exports a variable or function with a value. “env” command lists all the environment variables.
Posted by: Guest on December-25-2020
0

export function in shell script

export command is used to export a variable or function to the environment of all the child processes running in the current shell. export -f functionname # exports a function in the current shell. It exports a variable or function with a value. “env” command lists all the environment variables.
Posted by: Guest on December-25-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language