当前位置: 首页 > news >正文

扬州网站建设企业广告发布者是指

扬州网站建设企业,广告发布者是指,网站建设的概念,seo西安bash测试test详解 概述 任何相对完整的计算机语言都能够测试某个条件#xff0c;然后根据测试的结果采取不同的动作。对于测试条件#xff0c; Bash使用test命令、各种方括号和圆括号、if/then结构等来测试条件。 7.1. Test Constructs 一个if/then语句结构测试一个或多个命… bash测试test详解 概述 任何相对完整的计算机语言都能够测试某个条件然后根据测试的结果采取不同的动作。对于测试条件 Bash使用test命令、各种方括号和圆括号、if/then结构等来测试条件。 7.1. Test Constructs 一个if/then语句结构测试一个或多个命令的退出状态是否为0(因为在unix系统中0表示’执行成功’) 如果为0就执行语句后面的命令。 Bash中有个专用的命令叫[(左中括号bash特殊字符之一)。它是内置命令test别名为提升效率 其同时也是bash的内置命令。该命令视其接受的参数为比较表达式或文件测试(测试文件是否存在、 文件类型、文件权限等)并且返回一个对应于比较结果的退出状态(如果比较或测试结果为真则返回0否则返回1)。 在bash2.02版本中bash新增了[[ … ]]叫扩展的test测试命令其进行比较时更贴合其他编程语言 的风格。需要注意的是[[是一个bash关键字而非命令。bash视[[ $a -lt $b ]]为单个元素返回一个退出状态。 [rootcentos8 ~]#type [[ [[ is a shell keyword [rootcentos8 ~]#type [ [ is a shell builtin [rootcentos8 ~]#type test test is a shell builtin [rootcentos8 ~]#which [ /usr/bin/[ [rootcentos8 ~]#which test /usr/bin/test[rootcentos8 ~]#a3 [rootcentos8 ~]#b4 [rootcentos8 ~]#[[ $a -lt $b ]] [rootcentos8 ~]#echo $? 0 [rootcentos8 ~]#a5 [rootcentos8 ~]#[[ $a -lt $b ]] [rootcentos8 ~]#echo $? 1‘(( … ))’ 和 ‘let …’ 结构用来进行简单的数学运算也会返回一个退出状态退出状态决定于其里面的 算术表达式展开后的结果是否是非0值。这些算术运算展开结构可能会被用来进行算术比较。 (( 0 1 )) # 逻辑与 echo $? # 1 *** # And so ... let num (( 0 1 )) echo $num # 0 # But ... let num (( 0 1 )) echo $? # 1 *** (( 200 || 11 )) # 逻辑或 echo $? # 0 *** # ... let num (( 200 || 11 )) echo $num # 1 let num (( 200 || 11 )) echo $? # 0 *** (( 200 | 11 )) # 逐位或 echo $? # 0 *** # ... let num (( 200 | 11 )) echo $num # 203 let num (( 200 | 11 )) echo $? # 0 *** # let 结构和双圆括号的返回状态相同。“let” 结构和双圆括号的返回状态相同。 注意某个算术表达式的退出状态不是该算术表达式计算错误的值。 var-2 (( var2 )) # 此处算术表达式值为0退出状态为1 echo $? # 1 var-2 (( var2 )) echo $var # 此处由于算术表达式为0退出状态为1bash认为非0的退出状态是命令未执行成功导致$$后面的echo命令不在执行# Will not echo $var!if不仅仅可以测试中括号中的条件还可以测试任何命令 if cmp a b /dev/null # 压缩标准输出和错误输出. then echo Files a and b are identical. else echo Files a and b differ. fi # The very useful if-grep construct: # ----------------------------------- if grep -q Bash filethen echo File contains at least one occurrence of Bash. fi wordLinux letter_sequenceinu if echo $word | grep -q $letter_sequence # The -q option to grep suppresses output. # -q 选项不输出任何信息到标准输出 thenecho $letter_sequence found in $word elseecho $letter_sequence not found in $word fi if COMMAND_WHOSE_EXIT_STATUS_IS_0_UNLESS_ERROR_OCCURREDthen echo Command succeeded.else echo Command failed. fi例7-1. 什么才是真? #!/bin/bash # Tip: # 如果你不确定某个条件的结果那最好在if测试结构中测试其。 echo echo Testing \0\ if [ 0 ] # zero thenecho 0 is true. else # Or else ...echo 0 is false. fi # 0 为真. echo echo Testing \1\ if [ 1 ] # one thenecho 1 is true. elseecho 1 is false. fi # 1 为真. echo echo Testing \-1\ if [ -1 ] # -1 thenecho -1 is true. elseecho -1 is false. fi # -1 为真. echo echo Testing \NULL\ if [ ] # NULL (空条件) thenecho NULL is true. elseecho NULL is false. fi # NULL 空为假。 echo echo Testing \xyz\ if [ xyz ] # 随机字符串 thenecho Random string is true. elseecho Random string is false. fi # 随机字符串为真. echo echo Testing \\$xyz\ if [ $xyz ] # 测试变量$xyz是否为空, 但是...# $xyz只是一个未初始化的变量. thenecho Uninitialized variable is true. elseecho Uninitialized variable is false. fi # 未初始化的字符串为假. echo echo Testing \-n \$xyz\ if [ -n $xyz ] # 有点卖弄学问的做法. thenecho Uninitialized variable is true. elseecho Uninitialized variable is false. fi # 同样未初始化的字符串为假. echo xyz # 初始化了,但是值为空. echo Testing \-n \$xyz\ if [ -n $xyz ] thenecho Null variable is true. elseecho Null variable is false. fi # 空变量为假. echo # 什么时候假为真呢(When is false true?) echo Testing \false\ if [ false ] # 此处 false 只是一个字符串而已... thenecho \false\ is true. # 结果为真啦啦啦. elseecho \false\ is false. fi # 这时候假为真. echo echo Testing \\$false\ # 再次测试假,此时的假为未初始化的变量. if [ $false ] thenecho \\$false\ is true. elseecho \\$false\ is false. fi # 此时测试结构为假. # What would happen if we tested the uninitialized variable $true? echo exit 0if [ condition-true ] thencommand 1command 2... else # 或者Or else ...# 在下面写测试条件为假时的代码.command 3command 4... fi条件测试结构中当if和then在同一行时必须使用分号结束if语句。if和then都为bash关键字。   关键字(或者命令)所开始的语句必须在同一行的下一个语句前使用分号结束。 if [ -x $filename ]; thenElse if and elifelif 是 else if 的简写.用来实现嵌套语句. if [ condition1 ] thencommand1command2command3 elif [ condition2 ] # Same as else if thencommand4command5 elsedefault-command fi结构’if test condition-true’和结构’if [ condition-true ]‘完全等价。当使用后者时左中括号’[会调用test命令。 所以右中括号在if/test结构中不是严格需要的然而新版本的bash要求必须跟上。特别指出test命令时bash内置命令。其用来测试文件类型和比较字符串。因此 在bash脚本中test命令不会调用外部二进制命令/usr/bin/test此时的test命令是sh-utils包的一部分。 bash$ type test test is a shell builtin bash$ type [ [ is a shell builtin bash$ type [[ [[ is a shell keyword bash$ type ]] ]] is a shell keyword bash$ type ] bash: type: ]: not found如果由于某些原因你希望在脚本中使用/usr/bin/test那可以使用完整的路径名指明. 例7-2.test,/usr/bin/test,[ ],和/usr/bin/[ #!/bin/bash echo if test -z $1 thenecho No command-line arguments. elseecho First command-line argument is $1.fi echo if /usr/bin/test -z $1 # 和内置命令test等价. # ^^^^^^^^^^^^^ # 指明了完整的路径. thenecho No command-line arguments. elseecho First command-line argument is $1. fi echo if [ -z $1 ] # 和上面的代码块功能相同. # if [ -z $1 # 该代码应该可以正常工作但是... # Bash说后面的右中括号必须带哎. thenecho No command-line arguments. elseecho First command-line argument is $1. fi echo if /usr/bin/[ -z $1 ] # 和上面的代码块功能相同. thenecho No command-line arguments. elseecho First command-line argument is $1. fi echo exit 0相比’[ ]‘’[[ ]]测试结构更加健壮。后者是扩展的test命令从ksh88版本中借鉴而来。在’[[ ]]’ 结构中不允许文件名展开或者单词分割但是允许参数展开和命令替换。 file/etc/passwd if [[ -e $file ]] thenecho Password file exists. fi使用’[[ … ]]‘测试结构而不使用’[ … ]‘可以避免脚本中很多逻辑错误。 比如,||,,操作符在’[[ ]]‘结构中适用但是在’[ ]结构中报错。对于八进制/十六进制的算术运算在’[[ ]]结构中亦支持。 # [[ 八进制/十六进制运算 ]] # Thank you, Moritz Gronbach, for pointing this out. decimal15 octal017 # 15 (decimal) hex0x0f # 15 (decimal) if [ $decimal -eq $octal ] thenecho $decimal equals $octal elseecho $decimal is not equal to $octal # 结果是15不等于017 fi # 在单中括号结构中不计算 [ single brackets ]! if [[ $decimal -eq $octal ]] thenecho $decimal equals $octal # 15 等于 017 elseecho $decimal is not equal to $octal fi # 双中括号中计算 [[ double brackets ]]! if [[ $decimal -eq $hex ]] thenecho $decimal equals $hex # 15 等于 0x0f elseecho $decimal is not equal to $hex fi # [[ $hexadecimal ]] 单独引用一个十六进制数也会自动计算为十进制!在if后要么test命令要么测试中括号都是必须存在的([] [[ ]])。 dir/home/bozo if cd $dir 2/dev/null; then # 2/dev/null将会重定向标准错误.echo Now in $dir. elseecho Cant change to $dir. fi如上面例子if 命令结构会返回命令的退出状态。同样下面在多个结构的组合用法中一个处于中括号内的测试条件可以不需要if。 var120 var222 [ $var1 -ne $var2 ] echo $var1 is not equal to $var2 home/home/bozo [ -d $home ] || echo $home directory does not exist.双圆括号结构(( ))展开并计算数学运算表达式。如果表达式运算结果为0则其返回一个为1的退出状态或者假false。一个非0的计算值则返回一个退出状态0或者真true。 例7-3.使用(( ))结构测试算术运算结果 #!/bin/bash # arith-tests.sh # Arithmetic tests. # (( ... ))结构计算并测试数学运算表达 # (( ... ))结构对于数学运算表达式的测试结果退出状态与[ ... ]结构相反! # (( ... ))结构中运算结果非0为真运算结果为0时退出状态为假。 (( 0 )) echo Exit status of \(( 0 ))\ is $?. # 1 (( 1 )) echo Exit status of \(( 1 ))\ is $?. # 0 (( 5 4 )) # true echo Exit status of \(( 5 4 ))\ is $?. # 0 (( 5 9 )) # false echo Exit status of \(( 5 9 ))\ is $?. # 1 (( 5 5 )) # true echo Exit status of \(( 5 5 ))\ is $?. # 0 # (( 5 5 )) gives an error message. (( 5 - 5 )) # 0 echo Exit status of \(( 5 - 5 ))\ is $?. # 1 (( 5 / 4 )) # Division o.k. echo Exit status of \(( 5 / 4 ))\ is $?. # 0 (( 1 / 2 )) # 除法结果小于1. echo Exit status of \(( 1 / 2 ))\ is $?. # 小于1的结果被圆整为0.# 1 (( 1 / 0 )) 2/dev/null # 使用0作为除数非法. # ^^^^^^^^^^^ echo Exit status of \(( 1 / 0 ))\ is $?. # 1 # # # (( ... )) 该结构也常常被用在 if-then 测试结构中. var15 var24 if (( var1 var2 )) then #^ ^ Note: Not $var1, $var2. Why?echo $var1 is greater than $var2 fi # 5 is greater than 4 exit 07.2. 文件测试操作(File test operators) if [ … ] 如果测试条件…为真则返回退出状态值0 -e 测试文件是否存在 -a 同上,已经被弃用不推荐使用 -f 测试文件是否为普通文件(不是文件夹或者设备文件) -s 测试文件是否非空(大小不是0) -d 测试文件是否是一个文件夹 -b 测试文件是否是一个块设备 -c 测试文件是否是一个字符设备 device0/dev/sda2 if [ -b $device0 ] thenecho $device0 is a block device. fi # /dev/sda2 是一个块设备.device1/dev/ttyS1 if [ -c $device1 ] thenecho $device1 is a character device. fi # /dev/ttyS1 是一个字符设备.-p 测试文件是否为管道文件. function show_input_type() {[ -p /dev/fd/0 ] echo PIPE || echo STDIN # 此处/dev/fd/0表示标准输入 } show_input_type Input # STDIN 标准输入 echo Input | show_input_type # PIPE 管道-h 测试文件是否是一个符号链接 -L 测试文件是否是一个符号 -S 测试文件是否是一个socket文 -t 测试文件(或者文件描述符)是否与某个终端关联   该测试可以测试脚本中的标准输入[ -t 0 ]或者标准输出[ -t 1 ]是否是一个终端。 -r 运行本测试的用户是否对文件有读权限 -w 写权限 -x 执行权限 -g 文件或者文件夹是否设置SGID标志位   如果某个文件或者文件夹上设置有SGID权限那么在该文件夹下创建的文件属主为该文件夹的属主。 -u 文件或者文件夹是否设置suid   如果某个属于root的二进制文件上被root设置了SUID标志位则不管是谁运行该可执行文件都以root权限运行   单某个可执行文件必须要访问系统硬件时此功能非常有用。如果缺失SUID标志位这些二进制文件不能被非root用户运行。 [外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-l7NmYZ4x-1691108945997)(png/2019-10-21-12-40-31.png)] 如上图有SUID标志位的文件权限模式的执行权限位标识为s而不再是x(rwx -- rws). -k 测试sticky位是否设置   如果一个文件设置了sticky位那么该问价会被保存在cache内便于访问   如果某个文件夹被设置了sticky位那么该文件夹的写权限将会被限制。   设置sticky位后其他用户的执行权限模式不在表现为x而是t(rwx -- rwt) [外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-fLENSzNn-1691108945998)(png/2019-10-21-12-56-29.png)]   也就是说如果一个用户对某个设置有sticky位的目录有读权限但不是该目录的属主那么他只能删除该目录下其拥有   的文件。这样做可以防止用户在公共文件夹意外删除别人的文件,例如/tmp文件夹。(当然root用户是可以删除和更改的) -O 测试自己是否是文件属主 -G 测试文件的GID是否和自己相同 -N 测试文件自最后一次读以来是否被修改过 f1 -nt f2 测试文件f1是否是比f2新 f1 -ot f2 测试文件f1是否是比f2旧 f1 -ef f2 测试文件f1和f2是否都是同一个文件的硬链接 ! 对上面所列的条件取反。(如果条件为空返回真,如下面例子) [rootcentos8 ~]#if [[ ]]; then echo true; fi true例7-4. 测试失效的链接(Testing for broken links) #!/bin/bash # broken-link.sh # Written by Lee bigelow ligelowbeeyahoo.com # Used in ABS Guide with permission. # 该脚本找出失效的符号链接并引用后输出。以便于给xargs处理。 # 例如. sh broken-link.sh /somedir /someotherdir|xargs rm # 只不过更加推荐下面的方法 # find somedir -type l -print0|\ # xargs -r0 file|\ # grep broken symbolic| # sed -e s/^\|: *broken symbolic.*$//g # # 注意: 谨慎对待 /proc 文件系统和任何循环链接 ################################################################ # 下面的语句表示如果没有指定目录参数传给脚本就将路径设置为当前的工作 # 目录。否则使用指定的目录参数进行搜索。 ###################### [ $# -eq 0 ] directoryspwd || directorys$# 下面的函数检查传给脚本的目录中为符号链接并且不存在的文件检查到后引用起来并打印。 # 如果是目录中的子目录则将该目录再次传给函数检查。 ########## linkchk () {for element in $1/*; do[ -h $element -a ! -e $element ] echo \$element\[ -d $element ] linkchk $element# Of course, -h tests for symbolic link, -d for directory.done }# 下面将每个传给脚本的合法目录参数传给linkchk()函数如果不是合法目录则打印错误信息和用法。 ################## for directory in $directorys; doif [ -d $directory ]then linkchk $directoryelseecho $directory is not a directoryecho Usage: $0 dir1 dir2 ...fi done exit $?7.3. 其它的比较操作 一个二进制比较操作符号比较两个变量或者比较数量。整数或者字符串的比较使用特定的符号集合。 整数比较 -eq 是否相等 if [ $a -eq $b ]-ne 是否不等 if [ $a -ne $b ]-gt $a是否大于$b if [ $a -gt $b ]-ge $a是否大于或等于$b if [ $a -ge $b ]-lt $a是否小于$b if [ $a -lt $b ]-le $a是否小于或等于$b if [ $a -le $b ] 小于(必须在双圆括号结构中) (($a $b)) 小于或等于(必须在双圆括号结构中) (($a $b)) 大于(必须在双圆括号结构中) (($a $b)) 大于或等于(必须在双圆括号结构中) (($a $b))字符串比较 is equal to if [ $a $b ]注意两边的空格. if [ $a$b ] # 注意该写法与上面的不等价.is equal to if [ $a $b ] 该写法是 的近似写法.[[ $a z* ]] # 如果 $a 以字母z开头则为真(模式匹配). [[ $a z* ]] # 将z*视为普通字符串. [ $a z* ] # 此处会视为通配和单词分割. [ $a z* ] # 将z*视为普通字符串. # Thanks, Stéphane Chazelas! 是否不等 if [ $a ! $b ] 该操作符也可以在[[ ... ]]结构中参与模式匹配操作.是否小于,以ASCII字符的顺序比较 if [[ $a $b ]] if [ $a \ $b ] 注意 在 [ ] 结构中需要被转义.是否大于,以ASCII字符的顺序比较 if [[ $a $b ]] if [ $a \ $b ]-z 判断某字符串是否为空,也就是长度为0 String # Zero-length (null) string variable. if [ -z $String ] thenecho \$String is null. elseecho \$String is NOT null. fi # $String is null.-n 判断某字符串是否非空. 注意-n 测试选项需要被测试的字符串被双引号引用起来一般总是将被测试的字符串引用起来。 例 7-5. 算术运算和比较 #!/bin/bash a4 b5 # Here a and b can be treated either as integers or strings. # There is some blurring between the arithmetic and string comparisons, # since Bash variables are not strongly typed. # Bash permits integer operations and comparisons on variables # whose value consists of all-integer characters. # Caution advised, however. echo if [ $a -ne $b ] # 数学运算比较 thenecho $a is not equal to $becho (arithmetic comparison) fi echo if [ $a ! $b ] # 字符串比较 thenecho $a is not equal to $b.echo (string comparison)# 4 ! 5# ASCII 52 ! ASCII 53 fi # 在该例子中 -ne 和 ! 都可以. echo exit 0例 7-6. 测试某字符串是否为空 #!/bin/bash # str-test.sh: Testing null strings and unquoted strings, # but not strings and sealing wax, not to mention cabbages and kings . . . # Using if [ ... ] # If a string has not been initialized, it has no defined value. # 如果一个字符串没有被定义其没有被定义的值这种状态叫null if [ -n $string1 ] # string1 没有被初始化或定义过. thenecho String \string1\ is not null. else echo String \string1\ is null. fi # 此处认为$string1非空,即使它没有被初始化. echo # 再试试? if [ -n $string1 ] # 这次 $string1 被双引号引用起来. thenecho String \string1\ is not null. else echo String \string1\ is null. fi # 为空! echo if [ $string1 ] # 此处变量string未引起 thenecho String \string1\ is not null. else echo String \string1\ is null. fi # 为空正确. # 最好还是引用起来需要测试的字符串不管是变量还是字符串本身. # # As Stephane Chazelas points out, # if [ $string1 ] has one argument, ]#该测试结果只有一个参数] # if [ $string1 ] has two arguments, the empty $string1 and ]#该测试结果有两个参数空字符串$string1和] echo string1initialized if [ $string1 ] # 赋值后, $string1 . thenecho String \string1\ is not null. else echo String \string1\ is null. fi # 非空. # 然而最好还是引起来因为... string1a b if [ $string1 ] thenecho String \string1\ is not null. else echo String \string1\ is null. fi # 此处不引用导致错误! exit 0 # Thank you, also, Florian Wisser, for the heads-up.例 7-7. zmore #!/bin/bash # zmore # View gzipped files with more filter. E_NOARGS85 E_NOTFOUND86 E_NOTGZIP87 if [ $# -eq 0 ] # same effect as: if [ -z $1 ] # $1 can exist, but be empty: zmore arg2 arg3 thenecho Usage: basename $0 filename 2# Error message to stderr.exit $E_NOARGS# Returns 85 as exit status of script (error code). fi filename$1 if [ ! -f $filename ] # 使用引号可以避免带空格的文件名出错. thenecho File $filename not found! 2 # Error message to stderr.exit $E_NOTFOUND fi if [ ${filename##*.} ! gz ] # Using bracket in variable substitution. thenecho File $1 is not a gzipped file!exit $E_NOTGZIP fi zcat $1 | more # Uses the more filter. # May substitute less if desired. exit $? # Script returns exit status of pipe. # Actually exit $? is unnecessary, as the script will, in any case, # return the exit status of the last command executed.compound comparison -a logical and exp1 -a exp2 returns true if both exp1 and exp2 are true. -o logical or exp1 -o exp2 returns true if either exp1 or exp2 is true. These are similar to the Bash comparison operators and ||, used within double brackets. [[ condition1 condition2 ]]The -o and -a operators work with the test command or occur within single test brackets. if [ $expr1 -a $expr2 ] thenecho Both expr1 and expr2 are true. elseecho Either expr1 or expr2 is false. fiBut, as rihad points out: [ 1 -eq 1 ] [ -n ècho true 12 ] # true [ 1 -eq 2 ] [ -n ècho true 12 ] # (no output) # ^^^^^^^ False condition. So far, everything as expected. # However ... [ 1 -eq 2 -a -n ècho true 12 ] # true # ^^^^^^^ False condition. So, why true output? # Is it because both condition clauses within brackets evaluate? [[ 1 -eq 2 -n ècho true 12 ]] # (no output) # No, thats not it. # Apparently and || short-circuit while -a and -o do not.7.4. Nested if/then Condition Tests Condition tests using the if/then construct may be nested. The net result is equivalent to using the compound comparison operator. a3 if [ $a -gt 0 ] thenif [ $a -lt 5 ]thenecho The value of \a\ lies somewhere between 0 and 5.fi fi # Same result as: if [ $a -gt 0 ] [ $a -lt 5 ] thenecho The value of \a\ lies somewhere between 0 and 5. fi7.5. Testing Your Knowledge of Tests The systemwide xinitrc file can be used to launch the X server. This file contains quite a number of if/then tests. The following is excerpted from an “ancient” version of xinitrc (Red Hat 7.1, or thereabouts). if [ -f $HOME/.Xclients ]; thenexec $HOME/.Xclients elif [ -f /etc/X11/xinit/Xclients ]; thenexec /etc/X11/xinit/Xclients else# failsafe settings. Although we should never get here# (we provide fallbacks in Xclients as well) it cant hurt.xclock -geometry 100x100-55 xterm -geometry 80x50-50150 if [ -f /usr/bin/netscape -a -f /usr/share/doc/HTML/index.html ]; thennetscape /usr/share/doc/HTML/index.html fi fiExplain the test constructs in the above snippet, then examine an updated version of the file, /etc/X11/xinit/xinitrc, and analyze the if/then test constructs there. You may need to refer ahead to the discussions of grep, sed, and regular expressions.
http://www.yutouwan.com/news/71998/

相关文章:

  • 一了网站唐山网站制作企业
  • 运城市做网站wordpress+cms+中文版
  • 济南企业营销型网站建设价格seo网站推广报价
  • 医疗器械网站建设社交网站开发成本
  • 怎么上传做 好的网站吗aspx网站 整站抓取
  • 域名到期对网站影响网站营销的重要价值
  • 天津建设工程信息网网站首页wordpress 文件管理插件
  • 营销网站设计实验网站开发公司需要什么资质
  • 有个新网站能提供网站备案要多长时间
  • asp.net网站开发实例杭州哪些做网站公司好
  • 中国铁工建设有限公司网站php网站建设含义
  • 响应式布局网站网站免备案空间
  • 商城网站源代码莱芜高端网站建设价格
  • 网站首页优化如何快速推广一个新产品
  • wordpress适合做什么网站吗建设部网站资质公示
  • 网站开发流程中客户的任务是什么广东新闻联播林红
  • 道滘网站仿做做视频网站弹窗
  • 设计素材网站破解网站制作新报价
  • c2c网站功能本地网站建设多少钱
  • 网站建设超市visual studio怎么创建网页
  • 临沂网站建设微信大庆市建设局宫方网站
  • 建网站找哪个平台好呢怎么建立自己的公司网站
  • wordpress 商品站wordpress主题开发ide
  • 1万网站建设费入什么科目做网站如何排版
  • 简述一个网站开发流程网站开发后台服务器功能
  • 网站建设北京市唐山建设网站建站
  • 网站改版报告wow亚洲服有永久60级么
  • 给公司建立网站不可以做到的是wordpress如何自己写页面
  • 余姚市网站建设企业网站用什么做二次开发最快
  • 珠海营销型网站哪家好网站地图链接怎么做