Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
echo "option hidden" >> /tmp/nsrlic.tmp.$$$
echo "show name;enabler code;host id;expiration date;auth code;license type " >> /tmp/nsrlic.tmp.$$$
echo "print type: NSR license " >>/tmp/nsrlic.tmp.$$$
nsradmin -i /tmp/nsrlic.tmp.$$$ | sed 's/"//g;s/;//g;s/G //' | awk '
/name/ {NOM=substr($0,31);if (NOM == "\\") {getline; NOM=$0}}
/enabler/ {ENA=substr($0,31);if (ENA == "\\") {getline; ENA=$0}}
/host/ {HOS=substr($0,31);if (HOS == "\\") {getline; HOS=$0}}
/expiration/ {EXP=substr($0,31);if (EXP == "\\") {getline; EXP=$0}}
/auth/ {AUT=substr($0,31);if (AUT == "\\") {getline; AUT=$0}}
/license/ {LIC=substr($0,31);print "\"" NOM "\";\"" ENA "\";\"" HOS "\";\"" EXP "\";\"" AUT "\";\"" LIC "\""}'
rm /tmp/nsrlic.tmp.$$$