shell scripts
勇zhe无wei
这个作者很懒,什么都没留下…
展开
-
shell script 计算两个整数乘积 取余
#!/bin/bash#Program# user input two integer number; program will cross these two number ,and#remainder#History# 2013/08/29 zhangxxxww First releasePATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local原创 2013-08-29 10:54:01 · 3773 阅读 · 0 评论 -
我的第二个shell script 日期和名字命名文件名
#!/bin/bash#Program# program creates three files,which named need user`s input and command#History# 2013/08/29 10:18 zhangxxxww First ReleasePATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bi原创 2013-08-29 10:15:24 · 2305 阅读 · 0 评论 -
VMware下u盘识别不出来怎么办
来自百度经验 :http://jingyan.baidu.com/article/15622f244eda16fdfcbea5fe.html转载 来自: http://www.upan.net/jiaocheng/qita/589.html u盘网:内容提要:1、我们首先运行虚拟机,然后依次查看“工具栏” – “VM” – “Settings” – “转载 2013-11-21 16:03:30 · 2558 阅读 · 0 评论 -
scp不用输入密码的拷贝
今天要从远程机器拷贝到本机上很多文件,拷贝了10分钟后,自己再也受不了这种输入密码的情况。于是想作为一个程序员应该要搞到一个自动化的脚本,不用输入密码。自己就百度一番,终于找到。文章参考: scp不用密码拷贝拷贝首先在各自机器上生成公钥和私钥ssh-keygen -b 1024 -t rsa这时将生成私钥id_rsa和公钥id_rsa.pub,存放在用户目录.ssh目录下 2. 将公钥拷贝到原创 2015-08-10 16:48:57 · 1039 阅读 · 0 评论