最新消息:觉得本站不错的话 记得收藏哦 博客内某些功能仅供测试 讨论群:135931704 快养不起小站了 各位有闲钱就打赏下把 My Email weicots#gmail.com Please replace # with @

一些 Linux Shell 和 Win Shell 小技巧

Win ajiang-tuzi 5550浏览

设置在CMD.exe命令行窗口(所谓的DOS窗口)中正确显示UTF-8字符
1.打开CMD.exe命令行窗口
2.通过 chcp命令改变代码页,UTF-8的代码页为65001
3.输入 chcp 65001

Win 查看系统版本
systeminfo |findstr Windows|findstr Microsoft

C:\Users\Administrator>systeminfo |findstr Wind
OS 名称:          Microsoft Windows 7 旗舰版

(没有x64就表示是32位的),上面的结果就表示是32位的
若有“x64”的字样,则表示操作系统是64位的。

php 查看版本 以及None-Thread Safe與Thread Safe(非線程安全與線程安全)版本
1.phpinfo() 下面的 Thread Safety 选项
2.The proper method is to check you currently installed PHP is it nts version or ts version. TS version would have php5ts.dll inside of your php folder; while regular NTS version would have php.dll inside of your php folder. Don’t simply copy over php5.dll, instead re-configure your php.ini not to use or to use NTS/TS version of extensions.

正确的方法是检查你当前安装的PHP是否是nts版本或ts版本。TS版本会在你的php文件夹里面有php5ts.dll; 而正常的NTS版本将在您的php文件夹中具有php.dll。不要简单地复制php5.dll,而是重新配置您的php.ini不使用或使用NTS / TS版本的扩展。

if your php version is Non-Thread-Safe (nts) you must use php extension with format example: extension=php_cl_dbg_5_2_nts.dll else if your php version is Thread-Safe (ts) you must use php extension with format example: extension=php_cl_dbg_5_2_ts.dll (notice bolded words)
So if get error like above. Firstly, check your PHP version is nts or ts, if is nts.
Then check in php.ini whether has any line like zend_extension_ts=”C:\xammp\php\ext\php_dbg.dll-5.2.x” choose right version of php_dbg.dll-5.2.x from it homepage (google for it). Change from zend_extension_ts to zend_extension_nts.

Note that ending the filename with nts.dll and ts.dll is just a convention. It’s totally possible for a nts dll to be named as ts.dll and vice-versa.

>Linux

Linux 查看系统版本
运行echo $HOSTTYPE
如果运行结果是“i686”,“i586”或“i386”,则说明linux操作系统是32位的;
如果结果是“x86_64”,则说明linux操作系统是64位的。
范例:
lsof命令
通过list open file命令可以查看到当前打开文件,在linux中所有事物都是以文件形式存在,包括网络连接及硬件设备。
i 参数表示网络链接,:80 指明端口号,该命令会同时列出PID,方便kill

转载请注明:(●--●) Hello.My Weicot » 一些 Linux Shell 和 Win Shell 小技巧

蜀ICP备15020253号-1