如何用脚本将这两条命令封装起来 第一条命令: ssh oracle@10.51.228.22 第二条命令: sh /home/oracle/shell/orc_call_pro.sh $v_etldate $proc_name $username $password
时间: 2024-02-04 20:04:00 浏览: 89
oracle脚本命令
可以使用以下脚本将这两条命令封装起来:
```bash
#!/bin/bash
# 设置变量
v_etldate="20220101"
proc_name="your_proc_name"
username="your_username"
password="your_password"
# 执行命令
ssh oracle@10.51.228.22 "sh /home/oracle/shell/orc_call_pro.sh $v_etldate $proc_name $username $password"
```
在脚本中,首先设置需要的变量,然后执行 ssh 命令,并将第二条命令作为参数传递给远程服务器。注意,此处需要将第二条命令用双引号括起来,否则变量将无法被解析。
阅读全文