#!/bin/bash #判断命令行是否代带有两个文件名的参数 if [ "$1" = "" ] || [ "$2" = "" ] then echo "Please enter file name" exit 1 fi #判断目标文件是否存在 if [ -e $2 ] then echo "...
分类:
其他好文 时间:
2014-07-16 22:59:29
阅读次数:
153
$ echo $((20.0/7))$ zcalc$ bc <<< 20+5/2$ bc <<< 'scale=4;20+5/2'$ expr 20 + 5$ calc 2 + 4$ node -pe 20+5/2 # Uses the power of JavaScript, e.g. : no....
分类:
其他好文 时间:
2014-07-16 22:53:27
阅读次数:
184
shell bash 是linux系统最常用的脚本,在其里面可以写上grep sed awk等常用命令用到grep那么就要想到正则开头是小写字母的那一行就列出grep -n '^[a-z]'oo前不能是小写字母grep -n '[^a-z]oo'不想要开头是英文字母grep -n '^[^a-zA-...
分类:
其他好文 时间:
2014-07-16 20:23:02
阅读次数:
163
two ways here I provide:+ use openSSH command line on git bash(such as msysgit bash) + ls -al ~/.ssh + ssh-keygen -t rsa -C "phpgcs@qq.com" + e...
我所用的Ubuntu自带的shell是bash。 1.bash中的引号 ‘:(单引号) 强引用 是什么就输出什么 “;(双引号) 弱引用 会进行变量替换 ·;(反引号) 命令替换 2.echo -n 不换行 -e 会将\t , \n转义后输出 echo "hello\tw...
分类:
系统相关 时间:
2014-07-16 19:33:17
阅读次数:
287
对所有用户有效在/etc/profile增加以下内容。只对当前用户有效在Home目录下的.bashrc或.bash_profile里增加下面的内容:(注意:等号前面不要加空格,否则可能出现 command not found)#在PATH中找到可执行文件程序的路径。export PATH =$PAT...
分类:
系统相关 时间:
2014-07-13 12:23:21
阅读次数:
295
1.修改redhat enterprise5 语言
问题描述:切换语言
cd /etc/sysconfig
vi i18n
将LANG=en_US.UTF-8
改成LANG=zh_CN.gb2312
2.bash: ifconfig: command not found
问题描述:
切换到root用户下
[root@localhost /]$ ifconfig
依然提示:“bash: ifconfig: command not found”
whereis ifconfig 看一下这个命令在...
分类:
系统相关 时间:
2014-07-12 22:56:34
阅读次数:
416
最近遇到这样的一个问题,cocos设置setup.py中ndk、sdk、ant时设置的路径写错了。这里记录下我重置的方法。
找到 /Users/你的用户名/.bash_profile 将这个文件中有关cocos的内容全部都删了就可以重新设置cocos的配置信息了。...
分类:
其他好文 时间:
2014-07-12 22:41:52
阅读次数:
244
古有windows,今有GNU Linux,那么如何清理GNU Linux下的垃圾呢?为了释放那可以存片的空间 整理了一下,大概从以下的方面进行着手,若客观有其它的补充的欢迎评论添加指正,以下列出的若没有以/根目录开始的,都是从当前用户的家(home)目录开始的,切记:
注意:
以下的#号表示注释:_(
#user_homedir/bash_history
bash_histor...
分类:
系统相关 时间:
2014-07-12 17:32:38
阅读次数:
223
关于redis是什么就不介绍了,安装过程参考了:http://www.cnblogs.com/silent2012/p/3499654.html。#!/bin/bash#定义安装目录export REDIS_HOME=/home/test/redis#创建安装目录mkdir $REDIS_HOME#...
分类:
系统相关 时间:
2014-07-12 13:30:20
阅读次数:
315