May 2018
Beginner
332 pages
7h 28m
English
If we want to send data to the embedded language script, then one way is to send it via variable content. Look at the following example:
$ export location="/etc"; ksh -c "ls $location"
In the preceding example, we are initializing a variable location with the path or folder name. When shell executes the ksh command, it will pass path as content of $location. Then, ksh will print the content of the directory required.