Raju asks:
How can I Debug a shell scripts?
This is most common question asked by new admins or UNIX user.
Shell scripting debugging can be boring job (read as not easy). There are various ways to debug a shell script.
{ 13 comments }
Raju asks:
How can I Debug a shell scripts?
This is most common question asked by new admins or UNIX user.
Shell scripting debugging can be boring job (read as not easy). There are various ways to debug a shell script.
{ 13 comments }
Couple of quick question answered by me: => Host a domain without CPanel or Plesk Control Panel => Bash shell display only hidden (dot) files => Monitor Linux user activity in real time => Apache name based VirtualHost example => How do I find out my mail server blacklisted? => Solaris find out a package [...]
{ 0 comments }
Asked by Chetan Joshi Q. What is the best way to find out what shell I’m using. echo $SHELL is not so reliable. Please let me know any tiny command or trick. A. Chetan, echo $SHELL should work. But here is old good UNIX trick. Use the command ps with -p {pid} option, which selects [...]
{ 16 comments }
Use any one of the following command to create temporary empty file names. The first command is special as it use the redirection operator >, the redirection refers to the standard output. So you are creating a new file or destroying existing file:
{ 7 comments }