Tag: escape character
-
Post Views: 15 1. In the shell script, an error is reported at runtime: /config/init/config0.sh line 184 appid unbound variable. as shown in Figure 1 2. Check the shell script, its value is:https://console.${RMT_MAIN_DOMAIN}/ccpauth/wx-msg-event/$APPID$/receive. ${rmt_main_domain} needs to be replaced with: dev.xxx.cn. $appId$ does not need to be replaced, it is left as it is, but now it is treated as a…
-
Post Views: 50 1. In the ShowDoc, 2 * 3600 is displayed as: 2 * 3600. 30 * 24 * 3600 is displayed as: 30 24 3600. as shown in Figure 1 2. Use escape characters in 30 * 24 * 3600, modify it to: 30 \* 24 \* 3600. 30 \* 24 \* 3600 are displayed as: 30 *…