3,248 reputation
722
bio website
location Norway
age
visits member for 1 year, 5 months
seen 11 hours ago
stats profile views 177

Jun
12
comment crash shell: any way to check if a command executed Successfully
This might be of help. Assuming this is the JVM shell.
Jun
11
answered How to burn a Linux distro ISO image from Linux Live?
Jun
10
comment Shell hangs when doing command from ssh
For starters, add set -x to the top of your script to trace its execution and to see where it stops.You shouldn't use single quotes around variables like $x because then they will be literally expanded to $x not the value of x.
Jun
6
revised How to edit file from grub prompt in RHEL6?
added 18 characters in body; edited title
Jun
6
revised How to do a “if not” in Bash without a test?
added 22 characters in body; edited title
Jun
6
comment How to edit file from grub prompt in RHEL6?
How are you not able to boot into your RHEL Linux? This file shouldn't render your system unbootable if it's corrupt. Switch to a virtal console with Ctrl+Alt+F1 or similar to login without X and edit the file.
Jun
6
answered How to do a “if not” in Bash without a test?
Jun
6
revised How to know if a specific program is open
added 2 characters in body
Jun
5
comment How to know if a specific program is open
Your commands contains funky options and I'm afraid echo $? gives the inverse value of what is asked for.
Jun
5
revised How to know if a specific program is open
added 14 characters in body
Jun
5
revised How to know if a specific program is open
added 14 characters in body
Jun
5
revised How to know if a specific program is open
edited body
Jun
5
revised How to know if a specific program is open
deleted 1 characters in body
Jun
5
answered How to know if a specific program is open
Jun
3
revised Installing puppet on RHEL6
added 314 characters in body; edited tags; edited title
May
27
answered echoing symbols in terminal/bash
May
24
awarded  Good Answer
May
22
comment How to remove a locally installed library?
@chenaren Does the problem still occur if you remove the local paths from LD_LIBRAY_PATH? You shouldn't mix different version of libraries.
May
22
comment How to remove a locally installed library?
To me it sounds like you didn't only install files to your home directory. Why would /bin/ls and other tools look for libraries there?
May
21
comment Where do I find a list of terminal key codes to remap shortcuts in bash?
An additional tip for listing the actual readline bindings of the shell is bind -p.