Re: question about setenv

Re: question about setenv

瀏覽:1460
日期:2025-11-16
EdStevens schrieb: #!/bin/sh-set x setenv ORACLE_SID mysid When running the script, the setenv line returns "setenv: not found" setenv is a C-Shell builtin, not a Bourne Shell builtin. See "man sh" and "man csh". The corresponding sh command is "export". ...看更多