程序员
-
Linux 命令安装bin文件详解程序员
Linux 命令安装bin文件 安装命令: //1,增加文件的可执行权限 chmod a+x jdk-6u30-linux-x64.bin //2,程序即安装在执行命令的文件夹下 …
-
Confluence5.8更改数据库配置详解程序员
Confluence5.8更改数据库配置 第一步:是找到confluence的安装目录,我的安装目录在 /opt/atlassian/; 第二步:由于confluence…
-
Linux查看文件大小命令详解程序员
Linux查看文件大小命令 du命令 (1)du -b filepath 参数-b表示以字节计数 du -b filepath 参数-b表示以字节计数 #示例: $ d…
-
运行bat时隐藏cmd窗口详解程序员
运行bat时隐藏cmd窗口 新建一个shrjj.vbs文件,文件内容为: Set ws = CreateObject(“Wscript.Shell”) ws.run “cmd /c…
-
Python3.x:Linux下退出python命令行详解程序员
Python3.x:Linux下退出python命令行 退出命令: quit() #或者 exit() #或者 Ctrl-D
-
Python3.x:Linux下安装python3.6详解程序员
Python3.x:Linux下安装python3.6 下载 #先进入download文件夹 cd /home/download #输入命令(下载到当前目录) wget https…
-
Linux系统crontab定时调度Python脚本详解程序员
Linux系统crontab定时调度Python脚本 一、Python脚本随Linux开机自动运行 #Python脚本:/home/edgar/auto.py #用root权限编辑…
-
Linux关于yum命令Error: Cannot retrieve repository metadata (repomd.xml) for repository:xxxxxx.详解程序员
Linux关于yum命令Error: Cannot retrieve repository metadata (repomd.xml) for repository:xxxxxx.…
-
EasyUI中datagrid双击事件详解程序员
EasyUI中datagrid双击事件 在jsp文件底部增加代码: <script type=”text/javascript”> //数据表双击事件 $(‘#tabl…
-
Windows:FTP命令大全详解程序员
Windows:FTP命令大全 简介 1, open:与服务器相连接; 2, send(put):上传文件; 3,get:下载文件; 4,mget:下载多个…