Focal Point
[CLOSED] Execute UNIX commands in fex - some don't work

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/4897050595

December 09, 2010, 11:36 AM
Francis Mariani
[CLOSED] Execute UNIX commands in fex - some don't work
UNIX whoami
-RUN

UNIX cd /bicocwf/ibi/ReportCaster76/bin
-RUN

UNIX pwd
UNIX ls
-RUN

The change directory command does not change the directory - it stays at
/bicocwf/ibi/srv76/wfs/edatemp/ts000006

I am logged in with the directory owner User ID.

This message has been edited. Last edited by: Francis Mariani,


Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
December 09, 2010, 11:47 AM
j.gross
I believe each UNIX (or !) command in the fex operates on a fresh shell instance, so the change of directory location does not carry forward.
December 09, 2010, 11:59 AM
Francis Mariani
Jack,

Thanks for that info. I was hoping that this could be rectified by only having one -RUN, but that doesn't work either. I suppose a batch command file would be the right way to do this, but I'm trying to run something that is on a server I cannot create a batch file on.

Regards,


Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
December 09, 2010, 02:34 PM
dbeagan
Looks like you can use ; as a command separator:
 !cd ../.. ; ls 

and && as a conditional:
 !cd ../.. && ls 



WebFOCUS 8.2.06
December 09, 2010, 03:17 PM
Waz
We have used ;, but have also build a script and executed it if there are a number of commands.


Waz...

Prod:WebFOCUS 7.6.10/8.1.04Upgrade:WebFOCUS 8.2.07OS:LinuxOutputs:HTML, PDF, Excel, PPT
In Focus since 1984
Pity the lost knowledge of an old programmer!

December 09, 2010, 07:33 PM
Francis Mariani
Thanks.


Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server