我需要在Unix命令提示符下定期执行SAS脚本(或者在sas EG(或)中)。我不打算手动执行这些脚本,而是使用java自动执行脚本。我尝试过但无法执行SAS可执行命令。但我正在通过java执行一些Unix命令。
例如:
channelExec.setCommand("cd /xyz/abc.;ls"); (it will list out the files in the directory)
channelExec.setCommand("cd /xyz/abc.;sas sas_program.sas");(unable to perform)
channelExec.connect();