[Solved] Delete file in linux server using curl command


Curl is used for sending HTTP requests. Maybe you want to issue the rm command via ssh?

From this stackexchange question:

ssh hostname “rm /myfolder/myFile.zip”

1

solved Delete file in linux server using curl command