Questions tagged «command-line-interface»

程序的界面完全由文本组成,与GUI(或图形用户界面)相对(尽管不一定互斥)。






3
节点js从文件获取文件夹路径
有没有一种方法可以获取包含特定文件的文件夹的路径。 fs.realpathSync('config.json', []); 返回类似 G:\node-demos\7-node-module\demo\config.json 我只需要 G:\node-demos\7-node-module\demo\ or G:\node-demos\7-node-module\demo\ 是否有任何API或我需要处理字符串?

18
致命错误:超过300秒的最大执行时间
我不断收到此PHP错误: 致命错误:超过300秒的最大执行时间 我已经尝试设置我max_execution_time和我的max_input_timephp.ini的(Apache和CLI)来0,-1和4000秒每。 而且我仍然收到错误消息: 致命错误:超过300秒的最大执行时间 同样,我的脚本运行了300秒钟以上才收到此消息 我正在通过命令行运行脚本。 我还检查了我的名字,phpinfo()以便查看php.ini我正在使用哪个。 更有趣的是,我尝试将设置 max_execution_time和max_input_time设置设置为5秒,并且我的脚本将在5秒之前运行超过5秒: 致命错误:超过300秒的最大执行时间


6
如何将每个包含一组子命令的Click命令拆分为多个文件?
我已经开发了一个大型点击应用程序,但是浏览不同的命令/子命令变得很困难。如何将命令组织到单独的文件中?是否可以将命令及其子命令组织到单独的类中? 这是一个我想如何分开的例子: 在里面 import click @click.group() @click.version_option() def cli(): pass #Entry Point command_cloudflare.py @cli.group() @click.pass_context def cloudflare(ctx): pass @cloudflare.group('zone') def cloudflare_zone(): pass @cloudflare_zone.command('add') @click.option('--jumpstart', '-j', default=True) @click.option('--organization', '-o', default='') @click.argument('url') @click.pass_obj @__cf_error_handler def cloudflare_zone_add(ctx, url, jumpstart, organization): pass @cloudflare.group('record') def cloudflare_record(): pass @cloudflare_record.command('add') @click.option('--ttl', '-t') @click.argument('domain') @click.argument('name') @click.argument('type') @click.argument('content') @click.pass_obj …






6
查找nginx版本?
我已按照以下步骤在Debian 7上安装了nginx sudo apt-get update sudo apt-get upgrade sudo apt-get install nginx sudo service nginx start 我已经确认通过从浏览器访问hostip可以启动nginx。如何找出nginx的版本? nginx -v失败并显示“command not found错误” 我确认usr / sbin目录中存在nginx,并且该目录已添加到$ PATH变量中

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.