Chinaunix首页 | 论坛 | 博客
  • 博客访问: 237937
  • 博文数量: 59
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 592
  • 用 户 组: 普通用户
  • 注册时间: 2014-04-01 12:51
个人简介

你们都是我的客户,所以,我对你们是透明的

文章分类

全部博文(59)

文章存档

2016年(29)

2015年(30)

分类: LINUX

2016-03-20 16:24:41

这次写个脚本
oracle很多都是十六进制的,有时候需要转换成十或者二进制
#! /bin/bash

echo "input under one of :
1    16------>2
2    16------>10
                                                                                                        "
read num
case $num in
1) echo "imput the number you want to change"
 read n
 echo -e "and so it's \c"
echo "ibase=16;obase=2;$n"|bc;;
2) echo "imput the number you want to change"
 read n
 echo -e "and so it's \c"
 echo "obase= 10 ;ibase=16;$n" | bc;;

*) echo "not correct input";;
esac
~                         
阅读(1600) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~