github.com/singularityware/singularity@v3.1.1+incompatible/scripts/run-singularity (about)

     1  #!/bin/sh
     2  # 
     3  # Copyright (c) 2017-2018, SyLabs, Inc. All rights reserved.
     4  # Copyright (c) 2017, SingularityWare, LLC. All rights reserved.
     5  #
     6  # Copyright (c) 2015-2017, Gregory M. Kurtzer. All rights reserved.
     7  # 
     8  # Copyright (c) 2016-2017, The Regents of the University of California,
     9  # through Lawrence Berkeley National Laboratory (subject to receipt of any
    10  # required approvals from the U.S. Dept. of Energy).  All rights reserved.
    11  # 
    12  # This software is licensed under a customized 3-clause BSD license.  Please
    13  # consult LICENSE file distributed with the sources of this project regarding
    14  # your rights to use or distribute this software.
    15  # 
    16  # NOTICE.  This Software was developed under funding from the U.S. Department of
    17  # Energy and the U.S. Government consequently retains certain rights. As such,
    18  # the U.S. Government has been granted for itself and others acting on its
    19  # behalf a paid-up, nonexclusive, irrevocable, worldwide license in the Software
    20  # to reproduce, distribute copies to the public, prepare derivative works, and
    21  # perform publicly and display publicly, and to permit other to do so. 
    22  # 
    23  # 
    24  
    25  # Simple wrapper for 'singularity run'
    26  
    27  exec /usr/bin/env singularity --quiet run "$@"
    28  
    29  exit 255
    30