最近写了一个shell脚本,用到了cp、time、cut、awk命令,把他们的使用方法给写下来:1.cp和mvcp命令:用来完成文件的复制,从源文件夹复制到目标文件夹。执行后源文件夹和目标文件夹均有源文件。mv
命令:用来移动文件。执行后,源文件夹中没有源文件。我经常用mv命令来重命名文件注意:cp...
分类:
系统相关 时间:
2014-06-29 14:03:19
阅读次数:
5085
机房收费系统进行有一段时间了,但是始终有些历史遗留问题。比如,如何MDI子窗体如何显示在上层的问题和MDI子窗体实例化的问题。
对于如何显示在上层的问题,我这次采用的还是SetParent函数,在模块里面添加:
'定义一个用来设置子窗体的函数
Declare Function SetParent Lib "user32" Alias "SetParent" (...
格式:
<activity-alias android:enabled=["true" | "false"]
android:exported=["true" | "false"]
android:icon="drawable resource"
android:label="string resou...
分类:
移动开发 时间:
2014-06-02 03:02:06
阅读次数:
253
TextView 加下划线 、 中划线
下过如图:
// 中划线
textView.getPaint().setFlags(Paint.STRIKE_THRU_TEXT_FLAG | Paint.ANTI_ALIAS_FLAG); // 设置中划线并加清晰
// 下划线
textView.getPaint().setFlags(Paint.UNDERLINE_TEXT_FLA...
分类:
移动开发 时间:
2014-06-01 14:49:20
阅读次数:
283
Examplescp file1.txt newdirCopies
thefile1.txtin the current directory to thenewdirsubdirectory.cp
/home/public_html/mylog.txt /home/public_html/backu...
分类:
系统相关 时间:
2014-06-01 12:24:00
阅读次数:
263
本环境配置步骤参考互联网:1、安装m4sudo apt-get install
m42、安装gmphttp://gmplib.org/ 下载gmplib./configuremakemake checksudo make
install3、安装pbchttp://crypto.stanford.ed...
分类:
其他好文 时间:
2014-05-30 02:57:35
阅读次数:
407
ubuntu
12.10正式版已经发布了,国内各大开源软件源也陆续更新了资源。今天分享一下ubuntu 12.10 软件更新源列表。首先,备份一下ubuntu 12.04
原来的源地址列表文件sudo cp /etc/apt/sources.list /etc/apt/sources.list.ol...
分类:
其他好文 时间:
2014-05-30 01:59:42
阅读次数:
365
1.文字输入和图形界面切换CTRL+ALT+(F1~F6)为切换至文字输入,分别对应六个不同输入界面,可用以不同账号;CTRL+ALT+F7为切换至图形界面2.修改时区date
-Rdate +%z这两个命令可用来查看时间及时区cp /usr/share/zoneinfo/Asia/Shanghai...
分类:
其他好文 时间:
2014-05-26 19:45:29
阅读次数:
276
在备份ltedecoder程序时,需要把此目录拷由到bak目录下,但decoder目录下有个大文件,不需要备份,还有日志问题,也不需要备份,如何实现呢??
方法:
cd /source-dir
find . -name .snapshot
-prune -o -print0 | cpio -pmd0 /dest-dir
解释: This command cop...
分类:
其他好文 时间:
2014-05-25 21:51:29
阅读次数:
518
tomcat配置单向认证1、生成服务器端证书keytool -genkey -keyalg RSA
-dname "cn=localhost,ou=sango,o=none,l=china,st=beijing,c=cn" -alias server
-keypass password -keyst...
分类:
其他好文 时间:
2014-05-25 20:33:16
阅读次数:
257