#!/bin/bash export LD_LIBRARY_PATH=/opt/FusionReplay-V12.6.7/lib:$LD_LIBRARY_PATH ./AppRun
时间: 2024-01-29 12:03:04 浏览: 178
以下是一个示例的bash脚本:
```bash
#!/bin/bash
export LD_LIBRARY_PATH=/opt/FusionReplay-V12.6.7/lib:$LD_LIBRARY_PATH
./AppRun
```
这个脚本首先设置了LD_LIBRARY_PATH环境变量,将/opt/FusionReplay-V12.6.7/lib目录添加到LD_LIBRARY_PATH中。然后,它执行了名为AppRun的可执行文件。
阅读全文
相关推荐




