码迷,mamicode.com
首页 >  
搜索关键字:user    ( 38326个结果
linux下自动ftp到服务器对比拷贝指定目录下文件
#!/bin/bash process=8 PWD=`pwd` DAT=`date` ftpip="192.168.1.1" user="ftp_username" password="ftp_password" local_dir="/home/" getlist() { ftp-n$ftpip<<EOF|awk‘{print$9}‘|sed‘/^$/d‘>$PWD/list user$user$password cdfile/ dir bye EOF } copy() { if[-f$P..
分类:系统相关   时间:2014-05-27 03:55:34    阅读次数:378
python模块paramiko的上传下载和远程执行命令
#!/usr/bin/python #-*-coding:utf-8-*- importparamiko,os,datetime server_ip=‘192.168.1.123‘ server_user=‘root‘ server_passwd=‘10241010‘ server_port=22 #local_dir=‘C:\Python27‘ #remote_dir=‘/soft2/nba/‘ defssh_connect(): ssh=paramiko.SSHClient() ssh.set_missi..
分类:编程语言   时间:2014-05-27 03:51:40    阅读次数:283
很全面的WinRAR实用技巧系列 - imsoft.cnblogs
WinRAR也可以管理我的桌面时间长了,桌面上堆的东西实在太多,平时该如何管理呢?安装了WinRAR的朋友可以请它来帮忙,用它管理清除无用的桌面文件或图标。 以XP系统为例,系统所在目录是“c:\windows”,假设用户名为“user”,桌面上的图标和文件都在“c:\documents and s...
分类:Windows程序   时间:2014-05-23 08:54:18    阅读次数:590
MYSQl left join联合查询效率分析
user表:id | name———1 | libk2 | zyfon3 | daodaouser_action表:user_id | action—————1 | jump1 | kick1 | jump2 | run4 | swimsql:select id, name, action from...
分类:数据库   时间:2014-05-22 05:43:45    阅读次数:343
查询EBS在线用户SQL(R12)
SELECT U.USER_NAME, APP.APPLICATION_SHORT_NAME, FAT.APPLICATION_NAME, FR.RESPONSIBILITY_KEY, FRT.RESPONSIBILITY_NAME, FF...
分类:数据库   时间:2014-05-22 05:25:27    阅读次数:306
spotlight监控工具使用
利用spotlight工具可以监控如下系统: 1、Spotlight on Unix 监控Linux服务器1)安装Spotlight on Unix2)配置spotlight登陆用户,注意spotlight默认不能使用root用户进行连接,需要用户自己创建一个具有root权限的用户。(1)user....
分类:其他好文   时间:2014-05-22 01:35:50    阅读次数:246
User is not in the sudoers file. This incident will be reported
On using the sudo command if we see the errorThis means that the user as whom we have logged in and are trying to run the command "sudo" does not have...
分类:其他好文   时间:2014-05-22 00:57:35    阅读次数:272
SQL分页
--第一种分页(TOP方式)--select * from T_Sys_User where User_Id in (select top 10 User_Id from T_Sys_User where User_Id not in(select top (10*0) User_Id from T...
分类:数据库   时间:2014-05-21 22:44:21    阅读次数:485
python的第一个脚本
第一个简单的python脚本#!/usr/bin/python # importos file_1=‘user.txt‘ file_2=‘lock.txt‘ #putanaccount_list f=file(file_1) accout_list=f.readlines() f.close() #putalistofthelockuser f=file(file_2) lock_list=[] foriinf.readlines(): line=i.strip(‘\n‘) lock_list..
分类:编程语言   时间:2014-05-21 01:19:11    阅读次数:391
Linux中的umask
1.文件和目录的默认权限在Linux中,我们创建文件或者目录的时候,并没有指定user,group,other这三类用户的权限,实际上umask(遮罩码)决定了创建时的默认权限。如果是文件,就用666-umask;如果是目录就用777-umask。记住LINUX的法则之一:文件默认情况下不应具有可执行权限。2...
分类:系统相关   时间:2014-05-20 22:51:07    阅读次数:576
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!