Valavil RESEARCH: BLOG

Illustration of a bird flying.
  • HEBREW 5:8-9

    8 Son though he was, he learned obedience from what he suffered; 9 and when he was made perfect, he became the source of eternal salvation for all who obey him,

    January 3, 2020
  • Fundamental related of a bash builtin command named “if”

    ABOUT if Conditionals have many forms. The most basic form is: if expression then statement where ‘statement’ is only executed if ‘expression’ evaluates to true. ’21’ evaluates to true.xs TYPICAL SHELL EXPOSURE [bash] $if true; then echo "works" ; fi works $if false; then echo "works" ; fi $ [/bash] LINK https://stackoverflow.com/questions/16034749/if-elif-else-statement-issues-in-bash http://tldp.org/HOWTO/Bash-Prog-Intro-HOWTO-6.html

    November 9, 2019
  • Fundamental of a bash builtin command named “unalias”

    ABOUT unalias Remove each name from the list of defined aliases. If -a is supplied, all alias definitions are removed. The return value is true unless a supplied name is not a defined alias. [bash] $unalias unalias: usage: unalias [-a] name [name …] $echo $? 2 $unalias -a $echo $? 0 $unalias pwd bash: unalias: […]

    October 21, 2019
  • Simple example of a bash builtin command named “wait”

    ABOUT wait wait waits for the process identified by process ID pid (or the job specified by job ID jobid), and reports its termination status. If an ID is not given, wait waits for all currently active child processes, and the return status is zero. If the ID is a job specification, wait waits for […]

    August 2, 2019
  • A look into the bash builtin command named “until”

    ABOUT until until command in Linux used to execute a set of commands as long as the final command in the ‘until’ Commands has an exit status which is not zero. It is mostly used where the user needs to execute a set of commands until a condition is true. A TYPICAL SHELL EXPOSURE [bash] […]

    July 16, 2019
  • Sessions of bash builtin command named “times”

    ABOUT times Print the accumulated user and system times for the shell and for processes run from the shell [bash] $times 0m0.063s 0m0.024s 0m0.008s 0m0.012s $times pin 0m0.064s 0m0.025s 0m0.008s 0m0.012s $times ping 0m0.065s 0m0.025s 0m0.008s 0m0.012s $times –help times: times Display process times. Prints the accumulated user and system times for the shell and […]

    June 30, 2019
  • Fundamentals related to a bash builtin command named “test”

    ABOUT test test provides no output, but returns 0 for “true” (test successful) and 1 for “false” (test failed). RELATED COMMAND LINE EXPOSURE [bash] $num=10; if (test $num -gt 5); then echo "yes"; else echo "no"; fi yes $num=1; if (test $num -gt 5); then echo "yes"; else echo "no"; fi no $num=5; if (test […]

    May 20, 2019
  • Command to suspend a GNU Bash shell

    ABOUT suspend Suspend the execution of this shell until it receives a SIGCONT signal. [bash] $suspend ^C^C |^Z [/bash] [bash] $kill -18 5139 $ [/bash] [bash] $suspend ^C^C |^Z $ [/bash] LINK https://ss64.com/bash/suspend.html

    April 23, 2019
  • Fundamentals related to bash builtin command named “shift”

    ABOUT shift shift [n] The positional parameters from n+1 … are renamed to $1 …. Parameters represented by the numbers $# down to $#-n+1 are unset. n must be a non-negative number less than or equal to $#. If n is 0, no parameters are changed. If n is not given, it is assumed to […]

    March 24, 2019
  • Understanding bash fundamentals and also about return command

    ABOUT return Causes a function to stop executing and return the value specified by n to its caller. If n is omitted, the return status is that of the last command executed in the function body. TYPICAL COMMAND LINE EXPOSURE [bash] $cat learn function e() { echo hello echo "10" } e value=e #echo $value […]

    February 25, 2019
←Previous Page
1 2 3 4 5 6 … 120
Next Page→

Proudly powered by WordPress

  • Follow Following
    • valavil.in
    • Already have a WordPress.com account? Log in now.
    • valavil.in
    • Edit Site
    • Follow Following
    • Sign up
    • Log in
    • Report this content
    • View site in Reader
    • Manage subscriptions
    • Collapse this bar