Commit eb811046 authored by Leif Walsh's avatar Leif Walsh Committed by Yoni Fogel

refs #5368 use /usr/bin/env bash instead of /bin/bash for scripts


git-svn-id: file:///svn/toku/tokudb@48325 c7de825b-a66e-492c-adef-691d508d4ae1
parent e2752f8e
#!/bin/bash
#!/usr/bin/env bash
test $# -ge 1 || exit 1
......
#!/bin/bash
#!/usr/bin/env bash
if [[ $# -lt 2 ]]; then exit 1; fi
......
#!/bin/bash
#!/usr/bin/env bash
set -e
......
#!/bin/bash
#!/usr/bin/env bash
set -e
......
#!/bin/bash
#!/usr/bin/env bash
set -e
......
#!/bin/bash
#!/usr/bin/env bash
set -e
......
#!/bin/bash
#!/usr/bin/env bash
set -e
test $# -ge 2
......
#!/bin/bash
#!/usr/bin/env bash
if [[ $# -lt 3 ]]; then exit 1; fi
......
#!/bin/bash
#!/usr/bin/env bash
set -e
......
#!/bin/bash
#!/usr/bin/env bash
set -e
......
#!/bin/bash
#!/usr/bin/env bash
if [[ $# -ne 1 ]]; then exit 1; fi
......
#!/bin/bash
#!/usr/bin/env bash
if [[ $# -lt 5 ]]; then exit 1; fi
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment