In my Linux machine I have binary script (called transferNames.bin )
The problem is that when I run transferNames.bin with & script stuck and not returns to Linux prompt “#”, even if I wait 1 day or more ( so I cant continue work on my Linux because its stuck ) Example:
[root@linux1 tmp]# ./transferNames.bin &
Transferring..
also diff way:
[root@linux1 tmp]# ( /tmp/transferNames.bin ) &
Transferring..
remark - transferNames.bin script work fine and I can’t edit this script
My question please advice if I can to run the ./transferNames.bin &
on other shell - how to do that?
In order to avoid the stuck problem? Or any other solution in order to run ./transferNames.bin & but on other shell? or any other opinion ?