github.com/ethereum-optimism/optimism@v1.7.2/packages/contracts-bedrock/scripts/Executables.sol (about)

     1  // SPDX-License-Identifier: MIT
     2  pragma solidity ^0.8.0;
     3  
     4  /// @notice The executables used in ffi commands. These are set here
     5  ///         to have a single source of truth in case absolute paths
     6  ///         need to be used.
     7  library Executables {
     8      string internal constant bash = "bash";
     9      string internal constant jq = "jq";
    10      string internal constant forge = "forge";
    11      string internal constant echo = "echo";
    12      string internal constant sed = "sed";
    13      string internal constant find = "find";
    14      string internal constant ls = "ls";
    15  }