使用 wget 作为管理员,但有什么问题吗?

使用 wget 作为管理员,但有什么问题吗?

我是 Linux 新手,最近我一直在考虑将 adminer 与我的 sql 一起使用,所以我使用了命令

wget https://www.adminer.org/latest-mysql-en.php

我得到了这个输出:

https://www.adminer.org/latest-mysql-en.php
Resolving www.adminer.org (www.adminer.org)... 
Connecting to www.adminer.org (www.adminer.org)... connected.
HTTP request sent, awaiting response... 302 Found
Location: static/download/4.8.1/adminer-4.8.1-mysql-en.php [following]
----  https://www.adminer.org/static/download/4.8.1/adminer-4.8.1-mysql-en.php
Reusing existing connection to www.adminer.org:443.
HTTP request sent, awaiting response... 200 OK
Length: 212634 (208K) [application/octet-stream]
Saving to: ‘latest-mysql-en.php’
latest-mysql-en.php 100%[================>] 207,65K   730KB/s    in 0,3s    
‘latest-mysql-en.php’ saved [212634/212634]

问题:

那里似乎有什么问题? latest-mysql-en.php 保存在哪里?我可以删除它吗?

答案1

该文件保存在您运行的目录中wget。如果您在打开终端后没有更改目录,它可能保存在您的主文件夹中/home/<USERNAME>/latest-mysql-en.php(或使用快捷方式~/latest-mysql-en.php)。然后您可以运行ls以列出当前目录中的所有文件和子目录。您可以使用 删除文件rm <PATH>

相关内容