当前位置: 技术问答>linux和unix
在shell中加上set -x为什么报错呢?
来源: 互联网 发布时间:2016-01-28
本文导语: 我以前在shell中加上set -x就可以把各个环境变量的值给显示出来了 可这次加上以后却说set: Syntax error 请问是怎么回事? 是不是因为shell第一行是#!/bin/csh的缘故? 以下是错误信息 Warning! One or more of your selected lo...
我以前在shell中加上set -x就可以把各个环境变量的值给显示出来了
可这次加上以后却说set: Syntax error
请问是怎么回事?
是不是因为shell第一行是#!/bin/csh的缘故?
以下是错误信息
Warning! One or more of your selected locales are not available.
Please invoke the commands "locale" and "locale -a" to verify your
selections and the available locales.
Continuing processing using the "C" locale.
set: Syntax error.
可这次加上以后却说set: Syntax error
请问是怎么回事?
是不是因为shell第一行是#!/bin/csh的缘故?
以下是错误信息
Warning! One or more of your selected locales are not available.
Please invoke the commands "locale" and "locale -a" to verify your
selections and the available locales.
Continuing processing using the "C" locale.
set: Syntax error.
|
是不是因为shell第一行是#!/bin/csh的缘故?
----
是的。
Bourne shell 支持 set -x,但是 C shell 不支持。
----
是的。
Bourne shell 支持 set -x,但是 C shell 不支持。