Tags: bash*

0 bookmark(s) - Sort by: Date / Title ↑ /

  1. ( cmdpid=$BASHPID; (sleep 10; kill $cmdpid) & exec ping www.goooooogle.com )
    2021-06-29 Tags: , , , , by klotz
  2. 2024-01-06 Tags: , , by klotz
  3. Installing bash-completion with Homebrew
    To install bash-completion, you have to:

    brew install bash-completion
    And add the following to your ~/.bash_profile:

    if -f $(brew --prefix)/etc/bash_completion » ; then
    . $(brew --prefix)/etc/bash_completion
    fi
    2020-02-11 Tags: , , by klotz
  4. #!/bin/bash
    {
    sleep 5m
    kill $$
    } &

    while true
    do
    date
    sleep 1
    done

    or

    timeout 5m bash script.sh
    2020-12-23 Tags: , by klotz
  5. ifconfig | grep 'inet addr:'| grep -v '127.0.0.1' | cut -d: -f2 | awk '{ print $1}'
    2013-01-03 Tags: by klotz

Top of the page

First / Previous / Next / Last / Page 4 of 0 SemanticScuttle - klotz.me: tagged with "bash"

About - Propulsed by SemanticScuttle