shell - Call one bash script through another bash script -
let's below .bash exist in directory:
tellus@proetl01:~/prod/jcs/bin/dash_pplp/load$ ls -ltr total 29 drwxrwxr-x 2 tellus tellus 4 sep 7 11:32 archive drwxrwxr-x 2 tellus tellus 20 sep 7 11:33 test -rwxrwxr-x 1 tellus tellus 219 sep 7 14:56 transform_to_load.bash -rwxrwxr-x 1 tellus tellus 169 sep 7 15:00 final_transform.bash i want call final_transform.bash through transform_to_load.bash (at end of it)
how possible?
please assist :)
thank much
add either
./final_transform.bash or
bash final_transform.bash at end of transform_to_load.bash file should work.
Comments
Post a Comment