Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,575 for Bash (0.05 sec)

  1. pkg/collateral/control.go

    			return fmt.Errorf("unable to output YAML tree: %v", err)
    		}
    	}
    
    	if c.EmitBashCompletion {
    		if err := root.GenBashCompletionFile(c.OutputDir + "/" + root.Name() + ".bash"); err != nil {
    			return fmt.Errorf("unable to output bash completion file: %v", err)
    		}
    	}
    
    	if c.EmitZshCompletion {
    
    		// Constants used in zsh completion file
    		zshInitialization := `#compdef ` + root.Name() + `
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 03:51:36 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  2. dbflute_fess/_project.sh

    #!/bin/bash
    
    export ANT_OPTS=-Xmx512m
    
    export DBFLUTE_HOME=../mydbflute/dbflute-1.x
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jun 09 03:32:24 UTC 2016
    - 128 bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/npx

    #!/bin/bash
    # Copyright 2022 The Go Authors. All rights reserved.
    # Use of this source code is governed by a BSD-style
    # license that can be found in the LICENSE file.
    
    docker run \
      --rm \
      --volume $(pwd):/workspace \
      --workdir /workspace \
      --env NODE_OPTIONS="--dns-result-order=ipv4first" \
      --entrypoint npx \
      node:18.16.0-slim \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 349 bytes
    - Viewed (0)
  4. hack/update-vendor-licenses.sh

    kube::golang::setup_env
    export GOWORK=off
    export GOFLAGS=-mod=mod
    
    # Check bash version
    if (( BASH_VERSINFO[0] < 4 )); then
      echo
      echo "ERROR: Bash v4+ required."
      # Extra help for OSX
      if [[ "$(uname -s)" == "Darwin" ]]; then
        echo
        echo "Ensure you are up to date on the following packages:"
        echo "$ brew install md5sha1sum bash jq"
      fi
      echo
      exit 9
    fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:53 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. .github/workflows/maven_build_itself.yml

          - name: Build with Maven
            run: ./mvnw install -e -B -V -DdistributionFileName=apache-maven
    
          - name: Extract tarball
            shell: bash
            run: |
              set +e
              if [ -f ${{ env.TAR_BALL }} ]; then
                temp_dir=$(mktemp -d)
                tar -xzf ${{ env.TAR_BALL }} -C "$temp_dir" --strip 1
                maven_bin_dir=$temp_dir/bin
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 03 17:58:28 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. security/tools/jwt/README.md

        - Click "Create Key" from the drop-down menu, and select the default JSON key type. The key file
        will automatically downloads to your computer.
    
    ## Usage
    
    Type the following command to see the help message.
    
    ```bash
    python sa-jwt.py -h
    ```
    
    It outputs the following:
    
    ```plain
    usage: ./sa-jwt.py [-h] [-iss ISS] [-aud AUD] [-sub SUB] [-claims CLAIMS] service_account_file
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 14 20:15:07 UTC 2019
    - 1.9K bytes
    - Viewed (0)
  7. fuzzing/fuzzingserver-update-expected.sh

    #!/usr/bin/env bash
    
    SCRIPT_DIR="$( cd "$( dirname "$0" )" && pwd )"
    cd "$SCRIPT_DIR"
    
    if [ ! -f target/fuzzingserver-actual.txt ]; then
      echo "File not found. Did you run the Autobahn test script?"
      exit 1
    fi
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Mar 26 02:01:32 UTC 2019
    - 275 bytes
    - Viewed (0)
  8. src/test/resources/run.sh

    #!/bin/bash
    
    touch $(ls -d ./fess-*/logs)/fess-crawler.log
    tail -f ./fess-*/logs/*.log &
    
    mvn test -P integrationTests -Dtest.fess.url="http://localhost:8080" -Dtest.search_engine.url="http://localhost:9201"
    ret=$?
    
    if [ $ret != 0 ] ; then
      for f in `find ./target -type f | grep surefire-reports | grep -v /TEST-` ; do
        cat $f
      done
    fi
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 10 03:25:34 UTC 2024
    - 353 bytes
    - Viewed (0)
  9. Makefile

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    SHELL := /bin/bash
    
    # allow optional per-repo overrides
    -include Makefile.overrides.mk
    
    # Set the environment variable BUILD_WITH_CONTAINER to use a container
    # to build the repo. The only dependencies in this mode are to have make and
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 11 18:29:15 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/credentials-handling/pass-credentials-to-external-tool-via-stdin/common/login.sh

    #!/bin/bash
    
    echo Enter username:
    read username
    echo Enter password:
    if [ -t 0 ] ; then # if connected to a terminal, do not echo the password input
        stty -echo
        read password
        stty echo
        echo
    else
        read password
    fi
    
    if [ "$username" = "secret-user" ] && [ "$password" = "secret-password" ] ; then
        echo "Welcome, $username!"
    else
        echo "Bad credentials!"
        exit 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 391 bytes
    - Viewed (0)
Back to top