gpt4 book ai didi

linux - 在启动脚本 linux 中运行 lap-request

转载 作者:太空宇宙 更新时间:2023-11-04 11:01:54 25 4
gpt4 key购买 nike

我有一个在 Linx 中启动时运行的启动脚本:

/etc/init/selfconfig

#! /bin/sh  
# /etc/init.d/selfconfig

USER=root
HOME=/root

export USER HOME

/usr/bin/perl /boot/coder_settings/saconfig.pl

exit 0

这个脚本运行一个perl脚本

/boot/coder_settings/saconfig.pl

#! /usr/bin/perl

lwp-request -m GET http://192.168.1.16:3000/hostname > /boot/coder_settings/hostname.txt

但是我遇到了这个错误:

搜索模式未在/boot/coder_settings/saconfig.pl 第 3 行终止。

我做错了什么?

最佳答案

虽然 lwp-request 是一个 perl 脚本,但它被设置为作为命令行程序运行。

您可以简单地更改您的 bash 脚本;

#! /bin/sh 
....
/usr/bin/perl /boot/coder_settings/saconfig.pl

到;

#! /bin/sh 
....
lwp-request -m GET http://192.168.1.16:3000/hostname > /boot/coder_settings/hostname.txt

如果你想从 perl 中将 lwp-request 作为 shell 命令运行,请使用反引号将你的 perl 脚本更改为;

#! /usr/bin/perl

`lwp-request -m GET http://192.168.1.16:3000/hostname > /boot/coder_settings/hostname.txt`

关于linux - 在启动脚本 linux 中运行 lap-request,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26664545/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com