我在哪里可以找到UBUNTU上的.curlrc文件?

时间:2023-02-11 15:04:35

Where can i find the .curlrc file? I have tried $HOME/ and echo $CURL_HOME gives me a blank line. I have also tried find . -name ".curlrc" in $HOME. No results.

我在哪里可以找到.curlrc文件?我试过$ HOME /和echo $ CURL_HOME给了我一个空白行。我也试过找。 -name“.curlrc”在$ HOME中。没有结果。

Please help

请帮忙

2 个解决方案

#1


0  

updatedb && locate curlrc

make sure you run this command as root

确保以root身份运行此命令

or you could...

或者你可以......

nano ~/.curlrc

This is where it should be.

这应该是它应该的地方。

I do believe by default though, there is no curlrc file. You might have to create your own

我相信默认情况下,没有curlrc文件。您可能需要创建自己的

#2


1  

Try,

尝试,

find / -name .curlrc

find / -name .curlrc

this will output all .curlrc files and you can choose whichever is required.

这将输出所有.curlrc文件,您可以选择所需的。

#1


0  

updatedb && locate curlrc

make sure you run this command as root

确保以root身份运行此命令

or you could...

或者你可以......

nano ~/.curlrc

This is where it should be.

这应该是它应该的地方。

I do believe by default though, there is no curlrc file. You might have to create your own

我相信默认情况下,没有curlrc文件。您可能需要创建自己的

#2


1  

Try,

尝试,

find / -name .curlrc

find / -name .curlrc

this will output all .curlrc files and you can choose whichever is required.

这将输出所有.curlrc文件,您可以选择所需的。