LinuxShell(bash)重定向技巧linux环境中支持输入输出重定向,用符号来表示。0、1和2分别表示标准输入、标准输出和标准错误信息输出,可以用来指定需要重定向的标准输入或输出,比如2>a.txt表示将错误信息输出到文件a.txt中。同时,还可以在这三个标准输入输出之间实现重定向,比如将错...
分类:
系统相关 时间:
2014-05-09 17:30:23
阅读次数:
388
Cygwin 是一个用于 Windows 的类 UNIX shell 环境。 它由两个组件组成:一个
UNIX API 库,它模拟 UNIX 操作系统提供的许多特性;以及 Bash shell 的改写版本和许多 UNIX 实用程序,它们提供大家熟悉的 UNIX
命令行界面。前一个组件是一个 Wind...
分类:
编程语言 时间:
2014-05-05 12:03:37
阅读次数:
456
在bash提示符下,使用Del键或者Backspace键都能删除光标左右的字符,但是一旦进入sqlplus之后,只能使用Del键来删除光标左侧的字符,使用Backspace键则显示^H,使用ctrl+H也能删除字符。如果要在sqlplus下仅仅使用Backspace来删除字符,那么有两种方法: .....
分类:
数据库 时间:
2014-05-05 10:05:33
阅读次数:
388
使用SecureCRT或是pietty_ch连接到一台安装有Oracle DB
10g的RHEL4.2的机器,linux使用的shell是默认的bash。
在bash提示符下,使用Del键或者Backspace键都能删除光标左右的字符,但是一旦进入sqlplus之后,只能使用Del键来删除光标左侧....
分类:
数据库 时间:
2014-05-04 12:33:07
阅读次数:
621
screen 默认使用 bash shell,一般情况下screen只用于android
build,tmux则是我的日常使用多终端管理工具。# Default Shellshell "/bin/bash"# show status
barhardstatus alwayslastline "%{b...
分类:
系统相关 时间:
2014-05-03 22:14:57
阅读次数:
454
[root@rusky /]# vi
/etc/passwdroot:x:0:0:Redhat5:/root:/bin/bashrusky:x:500:500::/home/rusky:/bin/bash1.root:x:0:0:Redhat5:/root:/bin/bash
共七组,由:隔开 na...
分类:
其他好文 时间:
2014-05-03 22:09:12
阅读次数:
338
#!/bin/bash
clear
echo ""
echo "Enter Your First Name:"
read FirstName
echo "Enter Your Last Name:"
read LastName
echo "$FirstName $LastName">trans.dat...
分类:
其他好文 时间:
2014-05-03 22:02:31
阅读次数:
299
折腾了一个中午,在终端输入 vim myProgram
然后编辑以下内容
#!/bin/bash
clear
echo ""
echo "The Telephone Book"
echo ""
echo "1.Display A Telephone Number"
ehco "2.Add A New Telephone Number"
echo ""
echo "Q Quit"
ec...
分类:
系统相关 时间:
2014-05-03 21:26:33
阅读次数:
483
#!/bin/bash
clear
declare FirstName Greeting
Greeting="Hello ,"
echo ""
echo "Enter Your First Name:"
read FirstName
echo "$ Greeting $FirstName"
首先 vim Print 回车
然后 i 进入插入状态
编辑以上代码,Esc 键...
分类:
其他好文 时间:
2014-05-03 21:05:20
阅读次数:
283
#!/bin/bash#thisscriptisonlyforCentOS6#checktheOSplatform=`uname-i`if[$platform!="x86_64"];thenecho"thisscriptisonlyfor64bitOperatingSystem!"exit1fiecho"theplatformisok"version=`lsb_release-r|awk‘{printsubstr($2,1,1)}‘`if[$version!=6];thenecho"thisscriptiso..
分类:
系统相关 时间:
2014-05-03 14:51:00
阅读次数:
415