📄 code36_2.txt
字号:
#!/bin/shFILE=ipaddrsecho Content-type: text/plainechoif grep -s $REMOTE_ADDR $FILE > /dev/null 2>&1then echo Computer $REMOTE_ADDR has requested this URL previously.else echo $REMOTE_ADDR >> $FILE echo This is the first contact from computer $REMOTE_ADDR.fi
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -