码迷,mamicode.com
首页 >  
搜索关键字:bash    ( 15235个结果
shell脚本解析9(练习3)------倒序输出
#!/bin/bash#提示用户输入echo -n "Please enter number"read n #读入输入的值放到变量n中sd=0rev=""on=$n #将变量n的值保存到变量on中,方便以后用到echo "You put number is $n"while [$n -gt 0]do...
分类:其他好文   时间:2014-07-16 23:03:53    阅读次数:261
Hive安装和基础使用
1、安装JDK并设置环境变量 2、上传安装包 3、解压 4、设置环境变量# vi ~/.bash_profile或vi /etc/profile5、进入hive shell# hive shell或# hive 6、常见操作 查看数据库清单hive> show databses; 查看表清单hive...
分类:其他好文   时间:2014-07-12 00:27:32    阅读次数:347
安装HBase
1、安装JDK并设置环境变量 2、上传Hbase安装包hbase-0.94.0.tar.gz3、解压# tar -xzvf hbase-0.94.0.tar.gz4、设置环境变量# vi ~/.bash_profile或vi /etc/profileexport HBASE_HOME=/home/h...
分类:其他好文   时间:2014-07-12 00:24:15    阅读次数:235
bash arithmatic
Arithmetic in bash is done with $ and double parentheses:echo "$(($num1+$num2))"Or $ and square brackets:echo "$[$num1+$num2]"You can assign from that...
分类:其他好文   时间:2014-07-11 22:33:14    阅读次数:235
[Android] 为Android安装BusyBox —— 完整的bash shell(收藏用)
大家是否有过这样的经历,在命令行里输入adb shell,然后使用命令操作你的手机或模拟器,但是那些命令都是常见Linux命令的阉割缩水版,用起来很不爽。是否想过在Android上使用较完整的shell呢?用BusyBox吧。不论使用adb连接设备使用命令行还是在手机上直接用terminal emu...
分类:移动开发   时间:2014-07-11 20:53:02    阅读次数:284
shell脚本解析6----case语句
BASH中的case结构,可以用于进行多项分支。case "$var" incondition1) ;;condition2) ;;*) default statments;;esac例如:#!/bin/bashecho "Hit a key, then hit return"read...
分类:其他好文   时间:2014-07-11 10:44:58    阅读次数:230
linux下使profile和.bash_profile立即生效的方法
使profile生效的方法1.source/etc/profile使用.bash_profile生效的方法1..bash_profile2source.bash_profile3execbash--login
分类:系统相关   时间:2014-07-10 19:19:08    阅读次数:214
Linux Shell编程之二选择结构
Shell编程学习之二一、bash的条件测试测试方法或者说测试书写:testEXPR[EXPR][[EXPR]]例如:测试变量User_Name的之是否为roottest$User_Name="root"[$User_Name=="root"][[$User_Name=="root"]根据比较时操作数的类型,测试类型分为:测试类型运算符运算符所代表的意义示例整..
分类:系统相关   时间:2014-07-10 18:36:31    阅读次数:303
关于bash的配置文件加载
bash的配置文件分为两类全局配置/etc/profile/etc/profile.d/*.sh/etc/bashrc个人配置~/.bash_profile~/.bashrcprofile类的配置:设定环境变量;运行命令或脚本bashrc类的配置:设定本地变量;定义命令别名登录式shell如何读取配置文件(通过本地命令行或远程终端登录;su-usern..
分类:其他好文   时间:2014-07-10 17:59:21    阅读次数:243
Mac OS X 上Lua的安装方法
先在Mac OS的终端查询下本机是否已安装LuaLast login: Thu Jul 10 07:54:48 on ttys000keshans-Mac-mini:~ keshan$ lua-bash: lua: command not found 2. 如果没有(如上)的话去Lua的官方网站下....
分类:其他好文   时间:2014-07-10 15:50:08    阅读次数:173
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!