Bootstrap FreeKB - OpenResty - Resty script
OpenResty - Resty script

Updated:   |  OpenResty articles

This assumes you have installed OpenResty on a Linux system.

The resty command line tool can be used to issue in line commands, like this.

~]# resty -e 'print("Hello World")'
Hello World

 

Another approach is to create a resty script. Let's say foo.resty contains the following.

#!/bin/resty
print("Hello World")

 

Invoking this script should return Hello World.

~]# resty foo.resty
Hello World

 




Did you find this article helpful?

If so, consider buying me a coffee over at Buy Me A Coffee



Comments


Add a Comment


Please enter 85cf68 in the box below so that we can be sure you are a human.