Posted by Christian Ashby on April 28, 2010
If you are writing a BASH script which searches for a file pattern in a folder using this syntax:
[-f {pattern}]
Instead, use the following syntax:
files=$(ls {pattern} 2> /dev/null | wc -l)
if [ "$files" != "0" ]
This can be replaced with a similar command using find if required.
Tags: bash, debian, linux, ubuntu
Posted in Linux | No Comments »
Posted by Christian Ashby on March 26, 2010
Some Linux applications such as sqlplus still use readline to read what you type, which doesn’t properly support arrow keys, home, end, etc in most terminals.
You can fix this with a small wrapper called rlfe (for older Ubuntu/Debian variants) or rlwrap (for RedHat and most new distributions).
Once installed (apt-get install rlwrap for Debian/Ubuntu) you can enable it by default for your user by doing the following:
echo "alias {command}='rlwrap {command}'" >> ~/.bashrc
source ~/.bashrc
Tags: bash, linux, oracle, readline
Posted in Linux | No Comments »