├── .npmrc ├── src ├── http │ ├── get-nodejs10_x │ │ ├── config.arc │ │ └── index.js │ ├── get-ruby2_5 │ │ ├── config.arc │ │ └── index.rb │ ├── get-ruby2_7 │ │ ├── config.arc │ │ └── index.rb │ ├── get-nodejs12_x │ │ ├── config.arc │ │ └── index.js │ ├── get-nodejs14_x │ │ ├── config.arc │ │ └── index.js │ ├── get-python3_6 │ │ ├── config.arc │ │ └── index.py │ ├── get-python3_7 │ │ ├── config.arc │ │ └── index.py │ └── get-python3_8 │ │ ├── config.arc │ │ └── index.py ├── templates │ ├── results.md │ └── readme.md └── shared │ └── handler.js ├── .gitignore ├── scripts ├── _get-runtimes.js ├── _commit.js ├── _parse.js ├── update.js └── _write.js ├── package.json ├── .github └── workflows │ └── update.yml ├── app.arc ├── readme.md ├── _nodejs10.x.md ├── _nodejs12.x.md ├── _nodejs14.x.md ├── _ruby2.7.md ├── _python3.8.md ├── _nodejs8.10.md ├── _ruby2.5.md ├── _python3.6.md ├── _python3.7.md ├── license └── data.json /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /src/http/get-nodejs10_x/config.arc: -------------------------------------------------------------------------------- 1 | @aws 2 | runtime nodejs10.x -------------------------------------------------------------------------------- /src/http/get-ruby2_5/config.arc: -------------------------------------------------------------------------------- 1 | @aws 2 | runtime ruby2.5 3 | -------------------------------------------------------------------------------- /src/http/get-ruby2_7/config.arc: -------------------------------------------------------------------------------- 1 | @aws 2 | runtime ruby2.7 3 | -------------------------------------------------------------------------------- /src/http/get-nodejs12_x/config.arc: -------------------------------------------------------------------------------- 1 | @aws 2 | runtime nodejs12.x 3 | -------------------------------------------------------------------------------- /src/http/get-nodejs14_x/config.arc: -------------------------------------------------------------------------------- 1 | @aws 2 | runtime nodejs14.x 3 | -------------------------------------------------------------------------------- /src/http/get-python3_6/config.arc: -------------------------------------------------------------------------------- 1 | @aws 2 | runtime python3.6 3 | -------------------------------------------------------------------------------- /src/http/get-python3_7/config.arc: -------------------------------------------------------------------------------- 1 | @aws 2 | runtime python3.7 3 | -------------------------------------------------------------------------------- /src/http/get-python3_8/config.arc: -------------------------------------------------------------------------------- 1 | @aws 2 | runtime python3.8 3 | -------------------------------------------------------------------------------- /src/http/get-nodejs10_x/index.js: -------------------------------------------------------------------------------- 1 | exports.handler = require('@architect/shared/handler') 2 | -------------------------------------------------------------------------------- /src/http/get-nodejs12_x/index.js: -------------------------------------------------------------------------------- 1 | exports.handler = require('@architect/shared/handler') 2 | -------------------------------------------------------------------------------- /src/http/get-nodejs14_x/index.js: -------------------------------------------------------------------------------- 1 | exports.handler = require('@architect/shared/handler') 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | .arc-env 3 | .DS_Store 4 | .env 5 | node_modules 6 | vendor/ 7 | sam.* 8 | -------------------------------------------------------------------------------- /src/http/get-ruby2_5/index.rb: -------------------------------------------------------------------------------- 1 | require 'json' 2 | 3 | def handler(req, *context) 4 | raw = `bash -c 'compgen -c'` 5 | raw = raw.split("\n").sort() 6 | { cmds: raw } 7 | end 8 | -------------------------------------------------------------------------------- /src/http/get-ruby2_7/index.rb: -------------------------------------------------------------------------------- 1 | require 'json' 2 | 3 | def handler(req, *context) 4 | raw = `bash -c 'compgen -c'` 5 | raw = raw.split("\n").sort() 6 | { cmds: raw } 7 | end 8 | -------------------------------------------------------------------------------- /src/templates/results.md: -------------------------------------------------------------------------------- 1 | # AWS Lambda shell commands for `$RUNTIME` runtime 2 | ### Last change detected: `$LAST_UPDATED` from `$AWS_REGION` 3 | $VERSIONS 4 | ## Available AWS Lambda shell commands, shortcuts, and syntax 5 | 6 | $SHELL_COMMANDS 7 | -------------------------------------------------------------------------------- /src/http/get-python3_6/index.py: -------------------------------------------------------------------------------- 1 | import json 2 | import os 3 | import re 4 | 5 | def handler(request, context): 6 | command = 'compgen -c' 7 | result = os.popen(command).read() 8 | result = re.split('\n', result) 9 | result.sort() 10 | obj = { "cmds": result } 11 | return obj 12 | -------------------------------------------------------------------------------- /src/http/get-python3_7/index.py: -------------------------------------------------------------------------------- 1 | import json 2 | import os 3 | import re 4 | 5 | def handler(request, context): 6 | command = 'compgen -c' 7 | result = os.popen(command).read() 8 | result = re.split('\n', result) 9 | result.sort() 10 | obj = { "cmds": result } 11 | return obj 12 | -------------------------------------------------------------------------------- /src/http/get-python3_8/index.py: -------------------------------------------------------------------------------- 1 | import json 2 | import os 3 | import re 4 | 5 | def handler(request, context): 6 | command = 'compgen -c' 7 | result = os.popen(command).read() 8 | result = re.split('\n', result) 9 | result.sort() 10 | obj = { "cmds": result } 11 | return obj 12 | -------------------------------------------------------------------------------- /scripts/_get-runtimes.js: -------------------------------------------------------------------------------- 1 | let inventory = require('@architect/inventory') 2 | 3 | module.exports = async function getRuntimes () { 4 | let { inv } = await inventory() 5 | let runtimes = inv.http.map(({ arcStaticAssetProxy, name }) => { 6 | if (!arcStaticAssetProxy) return name.split('get /')[1] 7 | }).filter(Boolean).sort() 8 | return runtimes 9 | } 10 | -------------------------------------------------------------------------------- /src/shared/handler.js: -------------------------------------------------------------------------------- 1 | let { execSync: exec } = require('child_process') 2 | let tidy = b => b.toString().trim() 3 | 4 | module.exports = async function handler () { 5 | let cwd = process.cwd() 6 | let opts = { shell: true, cwd } 7 | 8 | let rawCmds = await exec('compgen -c', opts) 9 | let cmds = tidy(rawCmds).split('\n').sort() 10 | 11 | let nodeVer = exec('node --version') 12 | let npmVer = exec('npm --version') 13 | 14 | return { 15 | cmds, 16 | versions: [ 17 | { 18 | name: 'Node.js', 19 | version: tidy(nodeVer), 20 | }, 21 | { 22 | name: 'npm', 23 | version: tidy(npmVer), 24 | }, 25 | ] 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /scripts/_commit.js: -------------------------------------------------------------------------------- 1 | let { join } = require('path') 2 | let { readFileSync } = require('fs') 3 | let { Octokit } = require('@octokit/rest') 4 | Octokit = Octokit.plugin(require('octokit-commit-multiple-files')) 5 | let cwd = process.cwd() 6 | 7 | module.exports = async function commitChanges ({ dirty }) { 8 | let auth = process.env.TOKEN 9 | let now = new Date().toISOString() 10 | let day = now.split('T')[0] 11 | 12 | let message = `Lambda shell commands update: ${dirty.join(', ')} (${day})` 13 | let files = { 14 | 'readme.md': readFileSync(join(cwd, `readme.md`)).toString(), 15 | 'data.json': readFileSync(join(cwd, `data.json`)).toString(), 16 | } 17 | dirty.forEach(runtime => { 18 | let file = `_${runtime}.md` 19 | let filePath = join(cwd, file) 20 | files[file] = readFileSync(filePath).toString() 21 | }) 22 | 23 | let octokit = new Octokit({ auth }) 24 | await octokit.repos.createOrUpdateFiles({ 25 | owner: 'ryanblock', 26 | repo: 'lambda-shell-commands', 27 | branch: 'main', 28 | changes: [ 29 | { 30 | message, 31 | files, 32 | } 33 | ] 34 | }) 35 | } 36 | -------------------------------------------------------------------------------- /scripts/_parse.js: -------------------------------------------------------------------------------- 1 | let { join } = require('path') 2 | let { writeFileSync } = require('fs') 3 | let { deepStrictEqual } = require('assert') 4 | let tiny = require('tiny-json-http') 5 | 6 | let dataPath = join(process.cwd(), 'data.json') 7 | let data = require(dataPath) 8 | 9 | let endpoint = runtime => `${process.env.ENDPOINT}/${runtime}` 10 | 11 | module.exports = async function parseResults (runtimes) { 12 | let results = {} 13 | let dirty = [] 14 | 15 | for (let runtime of runtimes) { 16 | let url = endpoint(runtime) 17 | let response = await tiny.get({ url }) 18 | console.log(`Got response for ${runtime}, parsing...`) 19 | let { cmds, versions } = response.body 20 | results[runtime] = { 21 | cmds: [ ...new Set(cmds) ].filter(Boolean).sort(), 22 | versions: versions || false, 23 | } 24 | try { 25 | deepStrictEqual(results[runtime], data[runtime]) 26 | } 27 | catch (err) { 28 | dirty.push(runtime) 29 | } 30 | } 31 | 32 | if (dirty.length) { 33 | console.log(`Found some updates to publish: ${dirty.join(', ')}`) 34 | writeFileSync(dataPath, JSON.stringify(results, null, 2) + '\n') 35 | } 36 | 37 | return { results, dirty } 38 | } 39 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "lambda-shell-commands", 3 | "version": "1.0.0", 4 | "description": "AWS Lambda shell commands in $PATH available to runtime subprocesses", 5 | "scripts": { 6 | "lint": "eslint . --fix", 7 | "test": "npm run lint", 8 | "start": "NODE_ENV=testing npx sandbox", 9 | "publish": "node scripts/update.js", 10 | "publish:local": "ARC_LOCAL=true npm run publish" 11 | }, 12 | "keywords": [ 13 | "Amazon", 14 | "AWS Lambda", 15 | "AWS", 16 | "cloud functions", 17 | "Cloud", 18 | "Lambda", 19 | "serverless" 20 | ], 21 | "author": "Ryan Block ", 22 | "license": "Apache-2.0", 23 | "homepage": "https://github.com/ryanblock/lambda-shell-commands", 24 | "repository": { 25 | "type": "git", 26 | "url": "https://github.com/ryanblock/lambda-shell-commands.git" 27 | }, 28 | "dependencies": { 29 | "@architect/architect": "^9.0.0", 30 | "@architect/inventory": "^2.0.4", 31 | "@octokit/rest": "^18.9.0", 32 | "octokit-commit-multiple-files": "^3.2.1", 33 | "tiny-json-http": "^7.3.0" 34 | }, 35 | "devDependencies": { 36 | "@ryanblock/eslint-config": "^1.0.0", 37 | "dotenv": "^10.0.0", 38 | "eslint": "^7.32.0" 39 | }, 40 | "eslintConfig": { 41 | "extends": "@ryanblock/eslint-config" 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /.github/workflows/update.yml: -------------------------------------------------------------------------------- 1 | name: Node CI 2 | 3 | # Push tests pushes; PR tests merges 4 | on: 5 | push: 6 | schedule: 7 | - cron: '0 * * * 3' 8 | 9 | defaults: 10 | run: 11 | shell: bash 12 | 13 | jobs: 14 | 15 | # Test the build 16 | build: 17 | # Setup 18 | runs-on: ubuntu-latest 19 | 20 | # Go 21 | steps: 22 | - name: Check out repo 23 | uses: actions/checkout@v2 24 | 25 | - name: Set up Node.js 26 | uses: actions/setup-node@v1 27 | with: 28 | node-version: 14.x 29 | 30 | - name: Env 31 | run: | 32 | echo "Event name: ${{ github.event_name }}" 33 | echo "Git ref: ${{ github.ref }}" 34 | echo "GH actor: ${{ github.actor }}" 35 | echo "SHA: ${{ github.sha }}" 36 | VER=`node --version`; echo "Node ver: $VER" 37 | VER=`npm --version`; echo "npm ver: $VER" 38 | echo "OS ver: ${{ runner.os }}" 39 | 40 | - name: Install 41 | run: npm install 42 | 43 | - name: Hydrate 44 | run: npx arc hydrate 45 | 46 | - name: Test 47 | run: npm test 48 | env: 49 | CI: true 50 | 51 | - name: Publish 52 | run: npm run publish 53 | env: 54 | ENDPOINT: ${{ secrets.ENDPOINT }} 55 | AWS_REGION: ${{ secrets.AWS_REGION }} 56 | TOKEN: ${{ secrets.TOKEN }} 57 | -------------------------------------------------------------------------------- /app.arc: -------------------------------------------------------------------------------- 1 | @app 2 | lambda-cmd 3 | 4 | @aws 5 | region us-west-1 6 | profile personal 7 | 8 | @http 9 | get /nodejs14.x # API: Lambda shell commands on AWS Linux 2 / Node 14 10 | get /nodejs12.x # API: Lambda shell commands on AWS Linux 2 / Node 12 11 | get /nodejs10.x # API: Lambda shell commands on AWS Linux 2 / Node 10 12 | get /python3.8 # API: Lambda shell commands on AWS Linux 2 / Python 3.8 13 | get /python3.7 # API: Lambda shell commands on AWS Linux / Python 3.7 14 | get /python3.6 # API: Lambda shell commands on AWS Linux / Python 3.6 15 | get /ruby2.7 # API: Lambda shell commands on AWS Linux 2 / Ruby 2.7 16 | get /ruby2.5 # API: Lambda shell commands on AWS Linux / Ruby 2.5 17 | 18 | # TODO 19 | # get /custom # API: Lambda shell commands on AWS Linux 2 / Java 11 20 | # get /java11 # API: Lambda shell commands on AWS Linux 2 / Java 11 21 | # get /java8 # API: Lambda shell commands on AWS Linux / Java 8 22 | # get /go1.x # API: Lambda shell commands on AWS Linux / Go 1 23 | # get /dotnetcore3.1 # API: Lambda shell commands on AWS Linux 2 / .NET 3.1 24 | # get /dotnetcore2.1 # API: Lambda shell commands on AWS Linux / .NET 2.1 25 | 26 | # EOL / retired 27 | # get /nodejs8.10 # API: Lambda shell commands on AWS Linux / Node 8 28 | # get /python2.7 # API: Lambda shell commands on AWS Linux / Python 2.7 29 | -------------------------------------------------------------------------------- /scripts/update.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | // eslint-disable-next-line 4 | if (process.env.ARC_LOCAL) require('dotenv').config() 5 | let sandbox = require('@architect/sandbox') 6 | 7 | let getRuntimes = require('./_get-runtimes') 8 | let parse = require('./_parse') 9 | let write = require('./_write') 10 | let commit = require('./_commit') 11 | 12 | try { 13 | (async function update () { 14 | // Ensure you have valid process.env.ENDPOINT pointing to a live Lambda 15 | [ 'AWS_REGION', 'ENDPOINT', 'TOKEN' ].forEach(env => { 16 | if (!process.env[env]) throw ReferenceError(`Missing ${env}`) 17 | }) 18 | 19 | // Run locally, start sandbox if needed 20 | let local = process.env.ARC_LOCAL 21 | let runSandbox = local && process.env.ENDPOINT.includes('localhost') 22 | if (runSandbox) { 23 | await sandbox.start() 24 | } 25 | console.log('Pulling results from:', process.env.ENDPOINT) 26 | 27 | // Get the stuff 28 | let runtimes = await getRuntimes() 29 | let results = await parse(runtimes) 30 | 31 | // Write to filesystem (for local verification) and GitHub if anything changed 32 | if (results.dirty.length) { 33 | write(results, runtimes) 34 | commit(results) 35 | } 36 | 37 | // Close the local server 38 | if (runSandbox) { 39 | await sandbox.end() 40 | } 41 | console.log('Done!') 42 | })() 43 | } 44 | catch (err) { 45 | console.log(err) 46 | } 47 | -------------------------------------------------------------------------------- /scripts/_write.js: -------------------------------------------------------------------------------- 1 | let { join } = require('path') 2 | let { readFileSync, writeFileSync } = require('fs') 3 | 4 | let date = new Date().toISOString() 5 | let cwd = process.cwd() 6 | let template = name => { 7 | let file = join(cwd, 'src', 'templates', `${name}.md`) 8 | let template = readFileSync(file).toString() 9 | return template 10 | } 11 | let write = (filename, file) => { 12 | writeFileSync(filename, file) 13 | console.log(`Successfully updated ${filename.replace(cwd, '')}`) 14 | } 15 | 16 | module.exports = function writeResults ({ results, dirty }, runtimes) { 17 | 18 | // Update readme 19 | let tmpl = template('readme') 20 | let links = runtimes.map(r => `### → [\`${r}\`](./_${r}.md)`).join('\n') 21 | let file = tmpl 22 | .replace('$LAST_UPDATED', date) 23 | .replace('$LINKS', links) 24 | let filename = join(cwd, 'readme.md') 25 | write(filename, file) 26 | 27 | // Update the individual runtime files 28 | dirty.forEach(runtime => { 29 | let { cmds, versions } = results[runtime] 30 | let commands = cmds 31 | .map(cmd => `- \`${cmd}\``) 32 | .join('\n') 33 | let ver = versions 34 | ? `\n## Runtime version\n\n${versions.map(({ name, version }) => `**${name}**: ${version}`).join('\n\n')}\n` 35 | : '' 36 | 37 | // Write each 38 | let tmpl = template('results') 39 | let file = tmpl 40 | .replace('$RUNTIME', runtime) 41 | .replace('$LAST_UPDATED', date) 42 | .replace('$AWS_REGION', process.env.AWS_REGION) 43 | .replace('$VERSIONS', ver) 44 | .replace(`$SHELL_COMMANDS`, commands) 45 | let filename = join(cwd, `_${runtime}.md`) 46 | write(filename, file) 47 | }) 48 | } 49 | -------------------------------------------------------------------------------- /src/templates/readme.md: -------------------------------------------------------------------------------- 1 | # AWS Lambda shell commands 2 | ### Last change detected: $LAST_UPDATED 3 | 4 | 5 | ## Shell command lists by Lambda runtime 6 | 7 | $LINKS 8 | 9 | 10 | ## How Lambda works 11 | 12 | AWS Lambda is a full Linux microcontainer that boots up on-demand in milliseconds, billing in 1ms increments. 13 | 14 | Lambda is primarily used for running whatever business logic you feed one of its [supported runtimes](https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html) (or the [custom runtime](https://docs.aws.amazon.com/lambda/latest/dg/runtimes-custom.html) of your choosing, if you're into that!). 15 | 16 | As in any application, it's not unusual to need to shell out for some kinds of operations – after all, UNIX is pretty powerful! 🏋🏽‍♀️ 17 | 18 | Fortunately, Lambdas – which run a lightweight AWS AMI – come equipped with a full complement of common Linux shell commands. But not everything, hence this project! 19 | 20 | 21 | ### Helpful notes 22 | 23 | - AWS [pre-installs the AWS SDK in its Lambdas](https://docs.aws.amazon.com/lambda/latest/dg/current-supported-versions.html), so don't include it in your application's dependencies! 24 | - In fact, doing so will only slow down your Lambda's startup times, so don't do that. 25 | - Important local paths 26 | - `/var/task` - Your default cwd (and where your code is located) 27 | - `/tmp` - A nice place to perform local operations 28 | - ⚠️ Security warning: If dealing with any potentially sensitive data on the Lambda filesystem, **always be sure to destroy those files before ending each execution**. 29 | - Lambda microcontainers are kept warm and recycled across your invocations. Not cleaning up after temp files leaves open the possibility of leaking data across executions – statelessness is a feature! 30 | 31 | 32 | ### Build your own Lambda-based application 33 | 34 | Partially self-serving plug: this here project is built with [Architect](https://arc.codes), an open source serverless framework created and maintained by the company I cofounded: [Begin](https://begin.com), an open source-centric serverless app platform, created to help people like you build the fast, durable, scalable, affordable, maintainable, serverless software of the future. 35 | 36 | 37 | ## Credits 38 | 39 | This project inspired by [What's on Lambda](https://github.com/mbrock/whats-on-lambda)! 40 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # AWS Lambda shell commands 2 | ### Last change detected: 2021-09-01T00:56:58.814Z 3 | 4 | 5 | ## Shell command lists by Lambda runtime 6 | 7 | ### → [`nodejs10.x`](./_nodejs10.x.md) 8 | ### → [`nodejs12.x`](./_nodejs12.x.md) 9 | ### → [`nodejs14.x`](./_nodejs14.x.md) 10 | ### → [`python3.6`](./_python3.6.md) 11 | ### → [`python3.7`](./_python3.7.md) 12 | ### → [`python3.8`](./_python3.8.md) 13 | ### → [`ruby2.5`](./_ruby2.5.md) 14 | ### → [`ruby2.7`](./_ruby2.7.md) 15 | 16 | 17 | ## How Lambda works 18 | 19 | AWS Lambda is a full Linux microcontainer that boots up on-demand in milliseconds, billing in 1ms increments. 20 | 21 | Lambda is primarily used for running whatever business logic you feed one of its [supported runtimes](https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html) (or the [custom runtime](https://docs.aws.amazon.com/lambda/latest/dg/runtimes-custom.html) of your choosing, if you're into that!). 22 | 23 | As in any application, it's not unusual to need to shell out for some kinds of operations – after all, UNIX is pretty powerful! 🏋🏽‍♀️ 24 | 25 | Fortunately, Lambdas – which run a lightweight AWS AMI – come equipped with a full complement of common Linux shell commands. But not everything, hence this project! 26 | 27 | 28 | ### Helpful notes 29 | 30 | - AWS [pre-installs the AWS SDK in its Lambdas](https://docs.aws.amazon.com/lambda/latest/dg/current-supported-versions.html), so don't include it in your application's dependencies! 31 | - In fact, doing so will only slow down your Lambda's startup times, so don't do that. 32 | - Important local paths 33 | - `/var/task` - Your default cwd (and where your code is located) 34 | - `/tmp` - A nice place to perform local operations 35 | - ⚠️ Security warning: If dealing with any potentially sensitive data on the Lambda filesystem, **always be sure to destroy those files before ending each execution**. 36 | - Lambda microcontainers are kept warm and recycled across your invocations. Not cleaning up after temp files leaves open the possibility of leaking data across executions – statelessness is a feature! 37 | 38 | 39 | ### Build your own Lambda-based application 40 | 41 | Partially self-serving plug: this here project is built with [Architect](https://arc.codes), an open source serverless framework created and maintained by the company I cofounded: [Begin](https://begin.com), an open source-centric serverless app platform, created to help people like you build the fast, durable, scalable, affordable, maintainable, serverless software of the future. 42 | 43 | 44 | ## Credits 45 | 46 | This project inspired by [What's on Lambda](https://github.com/mbrock/whats-on-lambda)! 47 | -------------------------------------------------------------------------------- /_nodejs10.x.md: -------------------------------------------------------------------------------- 1 | # AWS Lambda shell commands for `nodejs10.x` runtime 2 | ### Last updated: 2021-08-05T16:40:24.653Z from `us-west-1` 3 | 4 | ## Runtime version 5 | 6 | **Node.js**: v10.24.1 7 | 8 | **npm**: 6.14.12 9 | 10 | ## Available AWS Lambda shell commands, shortcuts, and syntax 11 | 12 | - `!` 13 | - `.` 14 | - `:` 15 | - `[` 16 | - `[[` 17 | - `]]` 18 | - `alias` 19 | - `arch` 20 | - `awk` 21 | - `base64` 22 | - `basename` 23 | - `bash` 24 | - `bashbug` 25 | - `bashbug-64` 26 | - `bg` 27 | - `bind` 28 | - `break` 29 | - `builtin` 30 | - `ca-legacy` 31 | - `caller` 32 | - `captoinfo` 33 | - `case` 34 | - `cat` 35 | - `catchsegv` 36 | - `cd` 37 | - `chcon` 38 | - `chgrp` 39 | - `chmod` 40 | - `chown` 41 | - `cksum` 42 | - `clear` 43 | - `comm` 44 | - `command` 45 | - `compgen` 46 | - `complete` 47 | - `compopt` 48 | - `continue` 49 | - `coproc` 50 | - `cp` 51 | - `csplit` 52 | - `cut` 53 | - `date` 54 | - `dd` 55 | - `declare` 56 | - `df` 57 | - `dgawk` 58 | - `dir` 59 | - `dircolors` 60 | - `dirname` 61 | - `dirs` 62 | - `disown` 63 | - `do` 64 | - `done` 65 | - `du` 66 | - `echo` 67 | - `egrep` 68 | - `elif` 69 | - `else` 70 | - `enable` 71 | - `env` 72 | - `esac` 73 | - `eval` 74 | - `exec` 75 | - `exit` 76 | - `expand` 77 | - `export` 78 | - `expr` 79 | - `factor` 80 | - `false` 81 | - `fc` 82 | - `fg` 83 | - `fgrep` 84 | - `fi` 85 | - `fmt` 86 | - `fold` 87 | - `for` 88 | - `function` 89 | - `gawk` 90 | - `gencat` 91 | - `getconf` 92 | - `getent` 93 | - `getopts` 94 | - `grep` 95 | - `groups` 96 | - `hash` 97 | - `head` 98 | - `help` 99 | - `history` 100 | - `hostid` 101 | - `iconv` 102 | - `id` 103 | - `if` 104 | - `igawk` 105 | - `in` 106 | - `info` 107 | - `infocmp` 108 | - `infokey` 109 | - `infotocap` 110 | - `install` 111 | - `jobs` 112 | - `join` 113 | - `kill` 114 | - `ldd` 115 | - `let` 116 | - `link` 117 | - `ln` 118 | - `local` 119 | - `locale` 120 | - `localedef` 121 | - `logname` 122 | - `logout` 123 | - `ls` 124 | - `makedb` 125 | - `mapfile` 126 | - `md5sum` 127 | - `mkdir` 128 | - `mkfifo` 129 | - `mknod` 130 | - `mktemp` 131 | - `mv` 132 | - `nice` 133 | - `nl` 134 | - `node` 135 | - `nohup` 136 | - `npm` 137 | - `nproc` 138 | - `npx` 139 | - `numfmt` 140 | - `od` 141 | - `p11-kit` 142 | - `paste` 143 | - `pathchk` 144 | - `pgawk` 145 | - `pinky` 146 | - `pldd` 147 | - `popd` 148 | - `pr` 149 | - `printenv` 150 | - `printf` 151 | - `ptx` 152 | - `pushd` 153 | - `pwd` 154 | - `read` 155 | - `readarray` 156 | - `readlink` 157 | - `readonly` 158 | - `realpath` 159 | - `reset` 160 | - `return` 161 | - `rm` 162 | - `rmdir` 163 | - `rpcgen` 164 | - `runcon` 165 | - `sed` 166 | - `select` 167 | - `seq` 168 | - `set` 169 | - `sh` 170 | - `sha1sum` 171 | - `sha224sum` 172 | - `sha256sum` 173 | - `sha384sum` 174 | - `sha512sum` 175 | - `shift` 176 | - `shopt` 177 | - `shred` 178 | - `shuf` 179 | - `sleep` 180 | - `sort` 181 | - `sotruss` 182 | - `source` 183 | - `split` 184 | - `sprof` 185 | - `stat` 186 | - `stdbuf` 187 | - `stty` 188 | - `sum` 189 | - `suspend` 190 | - `sync` 191 | - `tabs` 192 | - `tac` 193 | - `tail` 194 | - `tee` 195 | - `test` 196 | - `then` 197 | - `tic` 198 | - `time` 199 | - `timeout` 200 | - `times` 201 | - `toe` 202 | - `touch` 203 | - `tput` 204 | - `tr` 205 | - `trap` 206 | - `true` 207 | - `truncate` 208 | - `trust` 209 | - `tset` 210 | - `tsort` 211 | - `tty` 212 | - `type` 213 | - `typeset` 214 | - `tzselect` 215 | - `ulimit` 216 | - `umask` 217 | - `unalias` 218 | - `uname` 219 | - `unexpand` 220 | - `uniq` 221 | - `unlink` 222 | - `unset` 223 | - `until` 224 | - `update-ca-trust` 225 | - `users` 226 | - `vdir` 227 | - `wait` 228 | - `wc` 229 | - `while` 230 | - `who` 231 | - `whoami` 232 | - `yes` 233 | - `{` 234 | - `}` 235 | -------------------------------------------------------------------------------- /_nodejs12.x.md: -------------------------------------------------------------------------------- 1 | # AWS Lambda shell commands for `nodejs12.x` runtime 2 | ### Last change detected: `2021-09-01T00:56:58.814Z` from `us-west-1` 3 | 4 | ## Runtime version 5 | 6 | **Node.js**: v12.22.4 7 | 8 | **npm**: 6.14.14 9 | 10 | ## Available AWS Lambda shell commands, shortcuts, and syntax 11 | 12 | - `!` 13 | - `.` 14 | - `:` 15 | - `[` 16 | - `[[` 17 | - `]]` 18 | - `alias` 19 | - `arch` 20 | - `awk` 21 | - `base64` 22 | - `basename` 23 | - `bash` 24 | - `bashbug` 25 | - `bashbug-64` 26 | - `bg` 27 | - `bind` 28 | - `break` 29 | - `builtin` 30 | - `ca-legacy` 31 | - `caller` 32 | - `captoinfo` 33 | - `case` 34 | - `cat` 35 | - `catchsegv` 36 | - `cd` 37 | - `chcon` 38 | - `chgrp` 39 | - `chmod` 40 | - `chown` 41 | - `cksum` 42 | - `clear` 43 | - `comm` 44 | - `command` 45 | - `compgen` 46 | - `complete` 47 | - `compopt` 48 | - `continue` 49 | - `coproc` 50 | - `cp` 51 | - `csplit` 52 | - `cut` 53 | - `date` 54 | - `dd` 55 | - `declare` 56 | - `df` 57 | - `dgawk` 58 | - `dir` 59 | - `dircolors` 60 | - `dirname` 61 | - `dirs` 62 | - `disown` 63 | - `do` 64 | - `done` 65 | - `du` 66 | - `echo` 67 | - `egrep` 68 | - `elif` 69 | - `else` 70 | - `enable` 71 | - `env` 72 | - `esac` 73 | - `eval` 74 | - `exec` 75 | - `exit` 76 | - `expand` 77 | - `export` 78 | - `expr` 79 | - `factor` 80 | - `false` 81 | - `fc` 82 | - `fg` 83 | - `fgrep` 84 | - `fi` 85 | - `fmt` 86 | - `fold` 87 | - `for` 88 | - `function` 89 | - `gawk` 90 | - `gencat` 91 | - `getconf` 92 | - `getent` 93 | - `getopts` 94 | - `grep` 95 | - `groups` 96 | - `hash` 97 | - `head` 98 | - `help` 99 | - `history` 100 | - `hostid` 101 | - `iconv` 102 | - `id` 103 | - `if` 104 | - `igawk` 105 | - `in` 106 | - `info` 107 | - `infocmp` 108 | - `infokey` 109 | - `infotocap` 110 | - `install` 111 | - `jobs` 112 | - `join` 113 | - `kill` 114 | - `ldd` 115 | - `let` 116 | - `link` 117 | - `ln` 118 | - `local` 119 | - `locale` 120 | - `localedef` 121 | - `logname` 122 | - `logout` 123 | - `ls` 124 | - `makedb` 125 | - `mapfile` 126 | - `md5sum` 127 | - `mkdir` 128 | - `mkfifo` 129 | - `mknod` 130 | - `mktemp` 131 | - `mv` 132 | - `nice` 133 | - `nl` 134 | - `node` 135 | - `nohup` 136 | - `npm` 137 | - `nproc` 138 | - `npx` 139 | - `numfmt` 140 | - `od` 141 | - `p11-kit` 142 | - `paste` 143 | - `pathchk` 144 | - `pgawk` 145 | - `pinky` 146 | - `pldd` 147 | - `popd` 148 | - `pr` 149 | - `printenv` 150 | - `printf` 151 | - `ptx` 152 | - `pushd` 153 | - `pwd` 154 | - `read` 155 | - `readarray` 156 | - `readlink` 157 | - `readonly` 158 | - `realpath` 159 | - `reset` 160 | - `return` 161 | - `rm` 162 | - `rmdir` 163 | - `rpcgen` 164 | - `runcon` 165 | - `sed` 166 | - `select` 167 | - `seq` 168 | - `set` 169 | - `sh` 170 | - `sha1sum` 171 | - `sha224sum` 172 | - `sha256sum` 173 | - `sha384sum` 174 | - `sha512sum` 175 | - `shift` 176 | - `shopt` 177 | - `shred` 178 | - `shuf` 179 | - `sleep` 180 | - `sort` 181 | - `sotruss` 182 | - `source` 183 | - `split` 184 | - `sprof` 185 | - `stat` 186 | - `stdbuf` 187 | - `stty` 188 | - `sum` 189 | - `suspend` 190 | - `sync` 191 | - `tabs` 192 | - `tac` 193 | - `tail` 194 | - `tee` 195 | - `test` 196 | - `then` 197 | - `tic` 198 | - `time` 199 | - `timeout` 200 | - `times` 201 | - `toe` 202 | - `touch` 203 | - `tput` 204 | - `tr` 205 | - `trap` 206 | - `true` 207 | - `truncate` 208 | - `trust` 209 | - `tset` 210 | - `tsort` 211 | - `tty` 212 | - `type` 213 | - `typeset` 214 | - `tzselect` 215 | - `ulimit` 216 | - `umask` 217 | - `unalias` 218 | - `uname` 219 | - `unexpand` 220 | - `uniq` 221 | - `unlink` 222 | - `unset` 223 | - `until` 224 | - `update-ca-trust` 225 | - `users` 226 | - `vdir` 227 | - `wait` 228 | - `wc` 229 | - `while` 230 | - `who` 231 | - `whoami` 232 | - `yes` 233 | - `{` 234 | - `}` 235 | -------------------------------------------------------------------------------- /_nodejs14.x.md: -------------------------------------------------------------------------------- 1 | # AWS Lambda shell commands for `nodejs14.x` runtime 2 | ### Last change detected: `2021-09-01T00:56:58.814Z` from `us-west-1` 3 | 4 | ## Runtime version 5 | 6 | **Node.js**: v14.17.4 7 | 8 | **npm**: 6.14.14 9 | 10 | ## Available AWS Lambda shell commands, shortcuts, and syntax 11 | 12 | - `!` 13 | - `.` 14 | - `:` 15 | - `[` 16 | - `[[` 17 | - `]]` 18 | - `alias` 19 | - `arch` 20 | - `awk` 21 | - `base64` 22 | - `basename` 23 | - `bash` 24 | - `bashbug` 25 | - `bashbug-64` 26 | - `bg` 27 | - `bind` 28 | - `break` 29 | - `builtin` 30 | - `ca-legacy` 31 | - `caller` 32 | - `captoinfo` 33 | - `case` 34 | - `cat` 35 | - `catchsegv` 36 | - `cd` 37 | - `chcon` 38 | - `chgrp` 39 | - `chmod` 40 | - `chown` 41 | - `cksum` 42 | - `clear` 43 | - `comm` 44 | - `command` 45 | - `compgen` 46 | - `complete` 47 | - `compopt` 48 | - `continue` 49 | - `coproc` 50 | - `cp` 51 | - `csplit` 52 | - `cut` 53 | - `date` 54 | - `dd` 55 | - `declare` 56 | - `df` 57 | - `dgawk` 58 | - `dir` 59 | - `dircolors` 60 | - `dirname` 61 | - `dirs` 62 | - `disown` 63 | - `do` 64 | - `done` 65 | - `du` 66 | - `echo` 67 | - `egrep` 68 | - `elif` 69 | - `else` 70 | - `enable` 71 | - `env` 72 | - `esac` 73 | - `eval` 74 | - `exec` 75 | - `exit` 76 | - `expand` 77 | - `export` 78 | - `expr` 79 | - `factor` 80 | - `false` 81 | - `fc` 82 | - `fg` 83 | - `fgrep` 84 | - `fi` 85 | - `fmt` 86 | - `fold` 87 | - `for` 88 | - `function` 89 | - `gawk` 90 | - `gencat` 91 | - `getconf` 92 | - `getent` 93 | - `getopts` 94 | - `grep` 95 | - `groups` 96 | - `hash` 97 | - `head` 98 | - `help` 99 | - `history` 100 | - `hostid` 101 | - `iconv` 102 | - `id` 103 | - `if` 104 | - `igawk` 105 | - `in` 106 | - `info` 107 | - `infocmp` 108 | - `infokey` 109 | - `infotocap` 110 | - `install` 111 | - `jobs` 112 | - `join` 113 | - `kill` 114 | - `ldd` 115 | - `let` 116 | - `link` 117 | - `ln` 118 | - `local` 119 | - `locale` 120 | - `localedef` 121 | - `logname` 122 | - `logout` 123 | - `ls` 124 | - `makedb` 125 | - `mapfile` 126 | - `md5sum` 127 | - `mkdir` 128 | - `mkfifo` 129 | - `mknod` 130 | - `mktemp` 131 | - `mv` 132 | - `nice` 133 | - `nl` 134 | - `node` 135 | - `nohup` 136 | - `npm` 137 | - `nproc` 138 | - `npx` 139 | - `numfmt` 140 | - `od` 141 | - `p11-kit` 142 | - `paste` 143 | - `pathchk` 144 | - `pgawk` 145 | - `pinky` 146 | - `pldd` 147 | - `popd` 148 | - `pr` 149 | - `printenv` 150 | - `printf` 151 | - `ptx` 152 | - `pushd` 153 | - `pwd` 154 | - `read` 155 | - `readarray` 156 | - `readlink` 157 | - `readonly` 158 | - `realpath` 159 | - `reset` 160 | - `return` 161 | - `rm` 162 | - `rmdir` 163 | - `rpcgen` 164 | - `runcon` 165 | - `sed` 166 | - `select` 167 | - `seq` 168 | - `set` 169 | - `sh` 170 | - `sha1sum` 171 | - `sha224sum` 172 | - `sha256sum` 173 | - `sha384sum` 174 | - `sha512sum` 175 | - `shift` 176 | - `shopt` 177 | - `shred` 178 | - `shuf` 179 | - `sleep` 180 | - `sort` 181 | - `sotruss` 182 | - `source` 183 | - `split` 184 | - `sprof` 185 | - `stat` 186 | - `stdbuf` 187 | - `stty` 188 | - `sum` 189 | - `suspend` 190 | - `sync` 191 | - `tabs` 192 | - `tac` 193 | - `tail` 194 | - `tee` 195 | - `test` 196 | - `then` 197 | - `tic` 198 | - `time` 199 | - `timeout` 200 | - `times` 201 | - `toe` 202 | - `touch` 203 | - `tput` 204 | - `tr` 205 | - `trap` 206 | - `true` 207 | - `truncate` 208 | - `trust` 209 | - `tset` 210 | - `tsort` 211 | - `tty` 212 | - `type` 213 | - `typeset` 214 | - `tzselect` 215 | - `ulimit` 216 | - `umask` 217 | - `unalias` 218 | - `uname` 219 | - `unexpand` 220 | - `uniq` 221 | - `unlink` 222 | - `unset` 223 | - `until` 224 | - `update-ca-trust` 225 | - `users` 226 | - `vdir` 227 | - `wait` 228 | - `wc` 229 | - `while` 230 | - `who` 231 | - `whoami` 232 | - `yes` 233 | - `{` 234 | - `}` 235 | -------------------------------------------------------------------------------- /_ruby2.7.md: -------------------------------------------------------------------------------- 1 | # AWS Lambda shell commands for `ruby2.7` runtime 2 | ### Last updated: 2021-08-05T16:40:24.653Z from `us-west-1` 3 | 4 | ## Available AWS Lambda shell commands, shortcuts, and syntax 5 | 6 | - `!` 7 | - `.` 8 | - `:` 9 | - `[` 10 | - `[[` 11 | - `]]` 12 | - `alias` 13 | - `arch` 14 | - `awk` 15 | - `base64` 16 | - `basename` 17 | - `bash` 18 | - `bashbug` 19 | - `bashbug-64` 20 | - `bg` 21 | - `bind` 22 | - `break` 23 | - `builtin` 24 | - `bundle` 25 | - `bundler` 26 | - `ca-legacy` 27 | - `caller` 28 | - `captoinfo` 29 | - `case` 30 | - `cat` 31 | - `catchsegv` 32 | - `cd` 33 | - `chcon` 34 | - `chgrp` 35 | - `chmod` 36 | - `chown` 37 | - `cksum` 38 | - `clear` 39 | - `comm` 40 | - `command` 41 | - `compgen` 42 | - `complete` 43 | - `compopt` 44 | - `continue` 45 | - `coproc` 46 | - `cp` 47 | - `csplit` 48 | - `cut` 49 | - `date` 50 | - `dd` 51 | - `declare` 52 | - `df` 53 | - `dgawk` 54 | - `dir` 55 | - `dircolors` 56 | - `dirname` 57 | - `dirs` 58 | - `disown` 59 | - `do` 60 | - `done` 61 | - `du` 62 | - `echo` 63 | - `egrep` 64 | - `elif` 65 | - `else` 66 | - `enable` 67 | - `env` 68 | - `erb` 69 | - `esac` 70 | - `eval` 71 | - `exec` 72 | - `exit` 73 | - `expand` 74 | - `export` 75 | - `expr` 76 | - `factor` 77 | - `false` 78 | - `fc` 79 | - `fg` 80 | - `fgrep` 81 | - `fi` 82 | - `fmt` 83 | - `fold` 84 | - `for` 85 | - `function` 86 | - `gawk` 87 | - `gem` 88 | - `gencat` 89 | - `getconf` 90 | - `getent` 91 | - `getopts` 92 | - `grep` 93 | - `groups` 94 | - `hash` 95 | - `head` 96 | - `help` 97 | - `history` 98 | - `hostid` 99 | - `iconv` 100 | - `id` 101 | - `if` 102 | - `igawk` 103 | - `in` 104 | - `info` 105 | - `infocmp` 106 | - `infokey` 107 | - `infotocap` 108 | - `install` 109 | - `irb` 110 | - `jobs` 111 | - `join` 112 | - `kill` 113 | - `ldd` 114 | - `let` 115 | - `link` 116 | - `ln` 117 | - `local` 118 | - `locale` 119 | - `localedef` 120 | - `logname` 121 | - `logout` 122 | - `ls` 123 | - `makedb` 124 | - `mapfile` 125 | - `md5sum` 126 | - `mkdir` 127 | - `mkfifo` 128 | - `mknod` 129 | - `mktemp` 130 | - `mv` 131 | - `nice` 132 | - `nl` 133 | - `nohup` 134 | - `nproc` 135 | - `numfmt` 136 | - `od` 137 | - `p11-kit` 138 | - `paste` 139 | - `pathchk` 140 | - `pgawk` 141 | - `pinky` 142 | - `pldd` 143 | - `popd` 144 | - `pr` 145 | - `printenv` 146 | - `printf` 147 | - `ptx` 148 | - `pushd` 149 | - `pwd` 150 | - `racc` 151 | - `racc2y` 152 | - `rake` 153 | - `rdoc` 154 | - `read` 155 | - `readarray` 156 | - `readlink` 157 | - `readonly` 158 | - `realpath` 159 | - `reset` 160 | - `return` 161 | - `ri` 162 | - `rm` 163 | - `rmdir` 164 | - `rpcgen` 165 | - `ruby` 166 | - `runcon` 167 | - `sed` 168 | - `select` 169 | - `seq` 170 | - `set` 171 | - `sh` 172 | - `sha1sum` 173 | - `sha224sum` 174 | - `sha256sum` 175 | - `sha384sum` 176 | - `sha512sum` 177 | - `shift` 178 | - `shopt` 179 | - `shred` 180 | - `shuf` 181 | - `sleep` 182 | - `sort` 183 | - `sotruss` 184 | - `source` 185 | - `split` 186 | - `sprof` 187 | - `stat` 188 | - `stdbuf` 189 | - `stty` 190 | - `sum` 191 | - `suspend` 192 | - `sync` 193 | - `tabs` 194 | - `tac` 195 | - `tail` 196 | - `tee` 197 | - `test` 198 | - `then` 199 | - `tic` 200 | - `time` 201 | - `timeout` 202 | - `times` 203 | - `toe` 204 | - `touch` 205 | - `tput` 206 | - `tr` 207 | - `trap` 208 | - `true` 209 | - `truncate` 210 | - `trust` 211 | - `tset` 212 | - `tsort` 213 | - `tty` 214 | - `type` 215 | - `typeset` 216 | - `tzselect` 217 | - `ulimit` 218 | - `umask` 219 | - `unalias` 220 | - `uname` 221 | - `unexpand` 222 | - `uniq` 223 | - `unlink` 224 | - `unset` 225 | - `until` 226 | - `update-ca-trust` 227 | - `users` 228 | - `vdir` 229 | - `wait` 230 | - `wc` 231 | - `while` 232 | - `who` 233 | - `whoami` 234 | - `y2racc` 235 | - `yes` 236 | - `{` 237 | - `}` 238 | -------------------------------------------------------------------------------- /_python3.8.md: -------------------------------------------------------------------------------- 1 | # AWS Lambda shell commands for `python3.8` runtime 2 | ### Last updated: 2021-08-05T16:40:24.653Z from `us-west-1` 3 | 4 | ## Available AWS Lambda shell commands, shortcuts, and syntax 5 | 6 | - `!` 7 | - `.` 8 | - `:` 9 | - `[` 10 | - `[[` 11 | - `]]` 12 | - `alias` 13 | - `arch` 14 | - `awk` 15 | - `base64` 16 | - `basename` 17 | - `bash` 18 | - `bashbug` 19 | - `bashbug-64` 20 | - `bg` 21 | - `bind` 22 | - `break` 23 | - `builtin` 24 | - `ca-legacy` 25 | - `caller` 26 | - `captoinfo` 27 | - `case` 28 | - `cat` 29 | - `catchsegv` 30 | - `cd` 31 | - `chcon` 32 | - `chgrp` 33 | - `chmod` 34 | - `chown` 35 | - `cksum` 36 | - `clear` 37 | - `comm` 38 | - `command` 39 | - `compgen` 40 | - `complete` 41 | - `compopt` 42 | - `continue` 43 | - `coproc` 44 | - `cp` 45 | - `csplit` 46 | - `cut` 47 | - `date` 48 | - `dd` 49 | - `declare` 50 | - `df` 51 | - `dgawk` 52 | - `dir` 53 | - `dircolors` 54 | - `dirname` 55 | - `dirs` 56 | - `disown` 57 | - `do` 58 | - `done` 59 | - `du` 60 | - `echo` 61 | - `egrep` 62 | - `elif` 63 | - `else` 64 | - `enable` 65 | - `env` 66 | - `esac` 67 | - `eval` 68 | - `exec` 69 | - `exit` 70 | - `expand` 71 | - `export` 72 | - `expr` 73 | - `factor` 74 | - `false` 75 | - `fc` 76 | - `fg` 77 | - `fgrep` 78 | - `fi` 79 | - `fmt` 80 | - `fold` 81 | - `for` 82 | - `function` 83 | - `gawk` 84 | - `gencat` 85 | - `getconf` 86 | - `getent` 87 | - `getopts` 88 | - `grep` 89 | - `groups` 90 | - `hash` 91 | - `head` 92 | - `help` 93 | - `history` 94 | - `hostid` 95 | - `iconv` 96 | - `id` 97 | - `if` 98 | - `igawk` 99 | - `in` 100 | - `info` 101 | - `infocmp` 102 | - `infokey` 103 | - `infotocap` 104 | - `install` 105 | - `jobs` 106 | - `join` 107 | - `kill` 108 | - `ldd` 109 | - `let` 110 | - `link` 111 | - `ln` 112 | - `local` 113 | - `locale` 114 | - `localedef` 115 | - `logname` 116 | - `logout` 117 | - `ls` 118 | - `makedb` 119 | - `mapfile` 120 | - `md5sum` 121 | - `mkdir` 122 | - `mkfifo` 123 | - `mknod` 124 | - `mktemp` 125 | - `mv` 126 | - `nice` 127 | - `nl` 128 | - `nohup` 129 | - `nproc` 130 | - `numfmt` 131 | - `od` 132 | - `p11-kit` 133 | - `paste` 134 | - `pathchk` 135 | - `pgawk` 136 | - `pinky` 137 | - `pip` 138 | - `pip3` 139 | - `pip3.8` 140 | - `pldd` 141 | - `popd` 142 | - `pr` 143 | - `printenv` 144 | - `printf` 145 | - `ptx` 146 | - `pushd` 147 | - `pwd` 148 | - `pydoc` 149 | - `pydoc3` 150 | - `pydoc3.8` 151 | - `python` 152 | - `python-config` 153 | - `python3` 154 | - `python3-config` 155 | - `python3.8` 156 | - `python3.8-config` 157 | - `read` 158 | - `readarray` 159 | - `readlink` 160 | - `readonly` 161 | - `realpath` 162 | - `reset` 163 | - `return` 164 | - `rm` 165 | - `rmdir` 166 | - `rpcgen` 167 | - `runcon` 168 | - `sed` 169 | - `select` 170 | - `seq` 171 | - `set` 172 | - `sh` 173 | - `sha1sum` 174 | - `sha224sum` 175 | - `sha256sum` 176 | - `sha384sum` 177 | - `sha512sum` 178 | - `shift` 179 | - `shopt` 180 | - `shred` 181 | - `shuf` 182 | - `sleep` 183 | - `sort` 184 | - `sotruss` 185 | - `source` 186 | - `split` 187 | - `sprof` 188 | - `stat` 189 | - `stdbuf` 190 | - `stty` 191 | - `sum` 192 | - `suspend` 193 | - `sync` 194 | - `tabs` 195 | - `tac` 196 | - `tail` 197 | - `tee` 198 | - `test` 199 | - `then` 200 | - `tic` 201 | - `time` 202 | - `timeout` 203 | - `times` 204 | - `toe` 205 | - `touch` 206 | - `tput` 207 | - `tr` 208 | - `trap` 209 | - `true` 210 | - `truncate` 211 | - `trust` 212 | - `tset` 213 | - `tsort` 214 | - `tty` 215 | - `type` 216 | - `typeset` 217 | - `tzselect` 218 | - `ulimit` 219 | - `umask` 220 | - `unalias` 221 | - `uname` 222 | - `unexpand` 223 | - `uniq` 224 | - `unlink` 225 | - `unset` 226 | - `until` 227 | - `update-ca-trust` 228 | - `users` 229 | - `vdir` 230 | - `wait` 231 | - `wc` 232 | - `while` 233 | - `who` 234 | - `whoami` 235 | - `yes` 236 | - `{` 237 | - `}` 238 | -------------------------------------------------------------------------------- /_nodejs8.10.md: -------------------------------------------------------------------------------- 1 | # AWS Lambda shell commands for `nodejs8.10` runtime 2 | ### Last updated: 2020-08-18T21:16:27.394Z from `us-west-1` 3 | 4 | ## Available AWS Lambda shell commands, shortcuts, and syntax 5 | 6 | - `!` 7 | - `.` 8 | - `:` 9 | - `[` 10 | - `[[` 11 | - `]]` 12 | - `a2p` 13 | - `addr2line` 14 | - `alias` 15 | - `animate` 16 | - `ar` 17 | - `arch` 18 | - `as` 19 | - `aserver` 20 | - `awk` 21 | - `base64` 22 | - `basename` 23 | - `bash` 24 | - `bashbug` 25 | - `bashbug-64` 26 | - `bdftopcf` 27 | - `berkeley_db_svc` 28 | - `bg` 29 | - `bind` 30 | - `bmp2tiff` 31 | - `break` 32 | - `build-classpath` 33 | - `build-classpath-directory` 34 | - `build-jar-repository` 35 | - `builtin` 36 | - `bunzip2` 37 | - `bzcat` 38 | - `bzcmp` 39 | - `bzdiff` 40 | - `bzgrep` 41 | - `bzip2` 42 | - `bzip2recover` 43 | - `bzless` 44 | - `bzmore` 45 | - `c++filt` 46 | - `c2ph` 47 | - `ca-legacy` 48 | - `cairo-sphinx` 49 | - `cal` 50 | - `caller` 51 | - `captoinfo` 52 | - `case` 53 | - `cat` 54 | - `catchsegv` 55 | - `cd` 56 | - `certutil` 57 | - `chcon` 58 | - `check-binary-files` 59 | - `checksctp` 60 | - `chgrp` 61 | - `chmem` 62 | - `chmod` 63 | - `chown` 64 | - `chrt` 65 | - `cksum` 66 | - `clean-binary-files` 67 | - `clear` 68 | - `cmp` 69 | - `cmsutil` 70 | - `col` 71 | - `colcrt` 72 | - `colrm` 73 | - `column` 74 | - `comm` 75 | - `command` 76 | - `compare` 77 | - `compgen` 78 | - `complete` 79 | - `compopt` 80 | - `composite` 81 | - `conjure` 82 | - `continue` 83 | - `convert` 84 | - `coproc` 85 | - `cp` 86 | - `cpio` 87 | - `create-jar-links` 88 | - `crlutil` 89 | - `csplit` 90 | - `curl` 91 | - `cut` 92 | - `date` 93 | - `db_archive` 94 | - `db_checkpoint` 95 | - `db_codegen` 96 | - `db_deadlock` 97 | - `db_dump` 98 | - `db_dump185` 99 | - `db_hotbackup` 100 | - `db_load` 101 | - `db_printlog` 102 | - `db_recover` 103 | - `db_stat` 104 | - `db_upgrade` 105 | - `db_verify` 106 | - `dd` 107 | - `declare` 108 | - `df` 109 | - `diff` 110 | - `diff-jars` 111 | - `diff3` 112 | - `dir` 113 | - `dircolors` 114 | - `dirname` 115 | - `dirs` 116 | - `disown` 117 | - `display` 118 | - `dmesg` 119 | - `do` 120 | - `done` 121 | - `du` 122 | - `dwp` 123 | - `easy_install-3.6` 124 | - `echo` 125 | - `egrep` 126 | - `eject` 127 | - `elfedit` 128 | - `elif` 129 | - `else` 130 | - `enable` 131 | - `env` 132 | - `eqn` 133 | - `esac` 134 | - `eval` 135 | - `exec` 136 | - `exit` 137 | - `expand` 138 | - `export` 139 | - `expr` 140 | - `factor` 141 | - `fallocate` 142 | - `false` 143 | - `fax2ps` 144 | - `fax2tiff` 145 | - `fc` 146 | - `fc-cache` 147 | - `fc-cat` 148 | - `fc-list` 149 | - `fc-match` 150 | - `fc-query` 151 | - `fc-scan` 152 | - `fg` 153 | - `fgrep` 154 | - `fi` 155 | - `file` 156 | - `find` 157 | - `find-jar` 158 | - `find2perl` 159 | - `findmnt` 160 | - `flock` 161 | - `fmt` 162 | - `fold` 163 | - `fonttosfnt` 164 | - `for` 165 | - `free` 166 | - `function` 167 | - `funzip` 168 | - `gawk` 169 | - `gdbus` 170 | - `gencat` 171 | - `geqn` 172 | - `getconf` 173 | - `getent` 174 | - `getopt` 175 | - `getopts` 176 | - `gif2tiff` 177 | - `gio-querymodules-64` 178 | - `glib-compile-schemas` 179 | - `gmake` 180 | - `gneqn` 181 | - `gnroff` 182 | - `gpg` 183 | - `gpg-agent` 184 | - `gpg-connect-agent` 185 | - `gpg-error` 186 | - `gpg-zip` 187 | - `gpg-zip2` 188 | - `gpg2` 189 | - `gpgconf` 190 | - `gpgparsemail` 191 | - `gpgsplit` 192 | - `gpgsplit2` 193 | - `gpgv` 194 | - `gpgv2` 195 | - `gpic` 196 | - `gprof` 197 | - `grep` 198 | - `groff` 199 | - `grops` 200 | - `grotty` 201 | - `groups` 202 | - `gsettings` 203 | - `gsoelim` 204 | - `gtar` 205 | - `gtbl` 206 | - `gtroff` 207 | - `gunzip` 208 | - `gzexe` 209 | - `gzip` 210 | - `h2ph` 211 | - `hash` 212 | - `head` 213 | - `help` 214 | - `hexdump` 215 | - `history` 216 | - `hostid` 217 | - `i386` 218 | - `iconv` 219 | - `id` 220 | - `identify` 221 | - `if` 222 | - `igawk` 223 | - `import` 224 | - `in` 225 | - `info` 226 | - `infocmp` 227 | - `infokey` 228 | - `infotocap` 229 | - `install` 230 | - `ionice` 231 | - `ipcmk` 232 | - `ipcrm` 233 | - `ipcs` 234 | - `isosize` 235 | - `java` 236 | - `java8` 237 | - `jjs` 238 | - `jjs8` 239 | - `jobs` 240 | - `join` 241 | - `jvmjar` 242 | - `keytool` 243 | - `keytool8` 244 | - `kill` 245 | - `killall` 246 | - `kmod` 247 | - `lastlog` 248 | - `lchfn` 249 | - `lchsh` 250 | - `ld` 251 | - `ld.bfd` 252 | - `ld.gold` 253 | - `ldd` 254 | - `let` 255 | - `link` 256 | - `linux32` 257 | - `linux64` 258 | - `ln` 259 | - `local` 260 | - `locale` 261 | - `localedef` 262 | - `logger` 263 | - `login` 264 | - `logname` 265 | - `logout` 266 | - `look` 267 | - `ls` 268 | - `lsblk` 269 | - `lscpu` 270 | - `lsipc` 271 | - `lslocks` 272 | - `lslogins` 273 | - `lsmem` 274 | - `lsns` 275 | - `lua` 276 | - `luac` 277 | - `make` 278 | - `makedb` 279 | - `mapfile` 280 | - `mcookie` 281 | - `md5sum` 282 | - `mkdir` 283 | - `mkfifo` 284 | - `mkfontdir` 285 | - `mkfontscale` 286 | - `mknod` 287 | - `mktemp` 288 | - `modutil` 289 | - `mogrify` 290 | - `montage` 291 | - `more` 292 | - `mountpoint` 293 | - `mv` 294 | - `namei` 295 | - `neqn` 296 | - `nice` 297 | - `nl` 298 | - `nm` 299 | - `node` 300 | - `nohup` 301 | - `npm` 302 | - `nproc` 303 | - `npx` 304 | - `nroff` 305 | - `nsenter` 306 | - `nss-policy-check` 307 | - `numfmt` 308 | - `objcopy` 309 | - `objdump` 310 | - `od` 311 | - `oldfind` 312 | - `openssl` 313 | - `orbd` 314 | - `orbd8` 315 | - `p11-kit` 316 | - `pack200` 317 | - `pack2008` 318 | - `pal2rgb` 319 | - `paste` 320 | - `patch` 321 | - `pathchk` 322 | - `peekfd` 323 | - `perl` 324 | - `perl5.16.3` 325 | - `perlbug` 326 | - `perldoc` 327 | - `perlthanks` 328 | - `pgawk` 329 | - `pgrep` 330 | - `pic` 331 | - `piconv` 332 | - `pinentry` 333 | - `pinentry-curses` 334 | - `pinky` 335 | - `pip-3.6` 336 | - `pk12util` 337 | - `pkg-config` 338 | - `pkill` 339 | - `pl2pm` 340 | - `pldd` 341 | - `pmap` 342 | - `pod2html` 343 | - `pod2man` 344 | - `pod2text` 345 | - `pod2usage` 346 | - `policytool` 347 | - `policytool8` 348 | - `popd` 349 | - `post-grohtml` 350 | - `ppm2tiff` 351 | - `pr` 352 | - `pre-grohtml` 353 | - `preconv` 354 | - `printenv` 355 | - `printf` 356 | - `prlimit` 357 | - `prtstat` 358 | - `ps` 359 | - `psed` 360 | - `pstree` 361 | - `pstree.x11` 362 | - `pstruct` 363 | - `ptx` 364 | - `pushd` 365 | - `pwd` 366 | - `pwdx` 367 | - `pwmake` 368 | - `pwscore` 369 | - `pydoc` 370 | - `pydoc2.7` 371 | - `pydoc27` 372 | - `pydoc3` 373 | - `pydoc3.6` 374 | - `python` 375 | - `python2.7` 376 | - `python27` 377 | - `python3` 378 | - `python3.6` 379 | - `python3.6m` 380 | - `python36` 381 | - `pyvenv3` 382 | - `pyvenv3.6` 383 | - `ranlib` 384 | - `ras2tiff` 385 | - `raw` 386 | - `raw2tiff` 387 | - `read` 388 | - `readarray` 389 | - `readelf` 390 | - `readlink` 391 | - `readonly` 392 | - `realpath` 393 | - `rebuild-jar-repository` 394 | - `rebuild-security-providers` 395 | - `rename` 396 | - `renice` 397 | - `reset` 398 | - `return` 399 | - `rev` 400 | - `rgb2ycbcr` 401 | - `rm` 402 | - `rmdir` 403 | - `rmid` 404 | - `rmid8` 405 | - `rmiregistry` 406 | - `rmiregistry8` 407 | - `rpcgen` 408 | - `rpm` 409 | - `rpm2cpio` 410 | - `rpmdb` 411 | - `rpmkeys` 412 | - `rpmquery` 413 | - `rpmverify` 414 | - `runcon` 415 | - `s2p` 416 | - `script` 417 | - `scriptreplay` 418 | - `sctp_darn` 419 | - `sctp_status` 420 | - `sctp_test` 421 | - `sdiff` 422 | - `sed` 423 | - `select` 424 | - `seq` 425 | - `servertool` 426 | - `servertool8` 427 | - `set` 428 | - `setarch` 429 | - `setpriv` 430 | - `setsid` 431 | - `setterm` 432 | - `setup-nsssysinit` 433 | - `setup-nsssysinit.sh` 434 | - `sh` 435 | - `sha1sum` 436 | - `sha224sum` 437 | - `sha256sum` 438 | - `sha384sum` 439 | - `sha512sum` 440 | - `shift` 441 | - `shopt` 442 | - `shred` 443 | - `shuf` 444 | - `signver` 445 | - `size` 446 | - `skill` 447 | - `slabtop` 448 | - `sleep` 449 | - `snice` 450 | - `soelim` 451 | - `sort` 452 | - `sotruss` 453 | - `source` 454 | - `splain` 455 | - `split` 456 | - `sprof` 457 | - `sqlite3` 458 | - `ssltap` 459 | - `stat` 460 | - `stdbuf` 461 | - `stream` 462 | - `strings` 463 | - `strip` 464 | - `stty` 465 | - `sum` 466 | - `suspend` 467 | - `sync` 468 | - `tabs` 469 | - `tac` 470 | - `tail` 471 | - `tailf` 472 | - `tar` 473 | - `taskset` 474 | - `tbl` 475 | - `tee` 476 | - `test` 477 | - `then` 478 | - `thumbnail` 479 | - `tic` 480 | - `tiff2bw` 481 | - `tiff2pdf` 482 | - `tiff2ps` 483 | - `tiff2rgba` 484 | - `tiffcmp` 485 | - `tiffcp` 486 | - `tiffcrop` 487 | - `tiffdither` 488 | - `tiffdump` 489 | - `tiffinfo` 490 | - `tiffmedian` 491 | - `tiffset` 492 | - `tiffsplit` 493 | - `time` 494 | - `timeout` 495 | - `times` 496 | - `tload` 497 | - `tnameserv` 498 | - `tnameserv8` 499 | - `toe` 500 | - `top` 501 | - `touch` 502 | - `tput` 503 | - `tr` 504 | - `trap` 505 | - `troff` 506 | - `true` 507 | - `truncate` 508 | - `tset` 509 | - `tsort` 510 | - `ttmkfdir` 511 | - `tty` 512 | - `type` 513 | - `typeset` 514 | - `tzselect` 515 | - `ucs2any` 516 | - `ul` 517 | - `ulimit` 518 | - `umask` 519 | - `unalias` 520 | - `uname` 521 | - `unexpand` 522 | - `uniq` 523 | - `unlink` 524 | - `unpack200` 525 | - `unpack2008` 526 | - `unset` 527 | - `unshare` 528 | - `until` 529 | - `unxz` 530 | - `unzip` 531 | - `unzipsfx` 532 | - `update-ca-trust` 533 | - `update-mime-database` 534 | - `uptime` 535 | - `urlgrabber` 536 | - `urlgrabber-2.7` 537 | - `users` 538 | - `utmpdump` 539 | - `uuidgen` 540 | - `vdir` 541 | - `vmstat` 542 | - `w` 543 | - `wait` 544 | - `watch` 545 | - `watchgnupg` 546 | - `wc` 547 | - `wdctl` 548 | - `whereis` 549 | - `which` 550 | - `while` 551 | - `who` 552 | - `whoami` 553 | - `withsctp` 554 | - `x86_64` 555 | - `xargs` 556 | - `xmlcatalog` 557 | - `xmllint` 558 | - `xmlwf` 559 | - `xsltproc` 560 | - `xz` 561 | - `xzcat` 562 | - `xzcmp` 563 | - `xzdec` 564 | - `xzdiff` 565 | - `xzegrep` 566 | - `xzfgrep` 567 | - `xzgrep` 568 | - `xzless` 569 | - `xzmore` 570 | - `yes` 571 | - `yum` 572 | - `zcat` 573 | - `zcmp` 574 | - `zdiff` 575 | - `zegrep` 576 | - `zfgrep` 577 | - `zforce` 578 | - `zgrep` 579 | - `zipgrep` 580 | - `zipinfo` 581 | - `zless` 582 | - `zmore` 583 | - `znew` 584 | - `zsoelim` 585 | - `{` 586 | - `}` 587 | -------------------------------------------------------------------------------- /_ruby2.5.md: -------------------------------------------------------------------------------- 1 | # AWS Lambda shell commands for `ruby2.5` runtime 2 | ### Last updated: 2021-08-05T16:40:24.653Z from `us-west-1` 3 | 4 | ## Available AWS Lambda shell commands, shortcuts, and syntax 5 | 6 | - `!` 7 | - `.` 8 | - `:` 9 | - `[` 10 | - `[[` 11 | - `]]` 12 | - `a2p` 13 | - `addr2line` 14 | - `alias` 15 | - `animate` 16 | - `ar` 17 | - `arch` 18 | - `as` 19 | - `aserver` 20 | - `awk` 21 | - `base64` 22 | - `basename` 23 | - `bash` 24 | - `bashbug` 25 | - `bashbug-64` 26 | - `bdftopcf` 27 | - `berkeley_db_svc` 28 | - `bg` 29 | - `bind` 30 | - `bmp2tiff` 31 | - `break` 32 | - `build-classpath` 33 | - `build-classpath-directory` 34 | - `build-jar-repository` 35 | - `builtin` 36 | - `bundle` 37 | - `bundler` 38 | - `bunzip2` 39 | - `bzcat` 40 | - `bzcmp` 41 | - `bzdiff` 42 | - `bzgrep` 43 | - `bzip2` 44 | - `bzip2recover` 45 | - `bzless` 46 | - `bzmore` 47 | - `c++filt` 48 | - `c2ph` 49 | - `ca-legacy` 50 | - `cairo-sphinx` 51 | - `cal` 52 | - `caller` 53 | - `captoinfo` 54 | - `case` 55 | - `cat` 56 | - `catchsegv` 57 | - `cd` 58 | - `certutil` 59 | - `chcon` 60 | - `check-binary-files` 61 | - `checksctp` 62 | - `chgrp` 63 | - `chmem` 64 | - `chmod` 65 | - `chown` 66 | - `chrt` 67 | - `cksum` 68 | - `clean-binary-files` 69 | - `clear` 70 | - `cmp` 71 | - `cmsutil` 72 | - `col` 73 | - `colcrt` 74 | - `colrm` 75 | - `column` 76 | - `comm` 77 | - `command` 78 | - `compare` 79 | - `compgen` 80 | - `complete` 81 | - `compopt` 82 | - `composite` 83 | - `conjure` 84 | - `continue` 85 | - `convert` 86 | - `coproc` 87 | - `cp` 88 | - `cpio` 89 | - `create-jar-links` 90 | - `crlutil` 91 | - `csplit` 92 | - `curl` 93 | - `cut` 94 | - `date` 95 | - `db_archive` 96 | - `db_checkpoint` 97 | - `db_codegen` 98 | - `db_deadlock` 99 | - `db_dump` 100 | - `db_dump185` 101 | - `db_hotbackup` 102 | - `db_load` 103 | - `db_printlog` 104 | - `db_recover` 105 | - `db_stat` 106 | - `db_upgrade` 107 | - `db_verify` 108 | - `dd` 109 | - `declare` 110 | - `df` 111 | - `diff` 112 | - `diff-jars` 113 | - `diff3` 114 | - `dir` 115 | - `dircolors` 116 | - `dirname` 117 | - `dirs` 118 | - `disown` 119 | - `display` 120 | - `dmesg` 121 | - `do` 122 | - `done` 123 | - `du` 124 | - `dwp` 125 | - `easy_install-3.6` 126 | - `echo` 127 | - `egrep` 128 | - `eject` 129 | - `elfedit` 130 | - `elif` 131 | - `else` 132 | - `enable` 133 | - `env` 134 | - `eqn` 135 | - `erb` 136 | - `esac` 137 | - `eval` 138 | - `exec` 139 | - `exit` 140 | - `expand` 141 | - `export` 142 | - `expr` 143 | - `factor` 144 | - `fallocate` 145 | - `false` 146 | - `fax2ps` 147 | - `fax2tiff` 148 | - `fc` 149 | - `fc-cache` 150 | - `fc-cat` 151 | - `fc-list` 152 | - `fc-match` 153 | - `fc-query` 154 | - `fc-scan` 155 | - `fg` 156 | - `fgrep` 157 | - `fi` 158 | - `file` 159 | - `find` 160 | - `find-jar` 161 | - `find2perl` 162 | - `findmnt` 163 | - `flock` 164 | - `fmt` 165 | - `fold` 166 | - `fonttosfnt` 167 | - `for` 168 | - `free` 169 | - `function` 170 | - `funzip` 171 | - `gawk` 172 | - `gdbus` 173 | - `gem` 174 | - `gencat` 175 | - `geqn` 176 | - `getconf` 177 | - `getent` 178 | - `getopt` 179 | - `getopts` 180 | - `gif2tiff` 181 | - `gio-querymodules-64` 182 | - `glib-compile-schemas` 183 | - `gmake` 184 | - `gneqn` 185 | - `gnroff` 186 | - `gpg` 187 | - `gpg-agent` 188 | - `gpg-connect-agent` 189 | - `gpg-error` 190 | - `gpg-zip` 191 | - `gpg-zip2` 192 | - `gpg2` 193 | - `gpgconf` 194 | - `gpgparsemail` 195 | - `gpgsplit` 196 | - `gpgsplit2` 197 | - `gpgv` 198 | - `gpgv2` 199 | - `gpic` 200 | - `gprof` 201 | - `grep` 202 | - `groff` 203 | - `grops` 204 | - `grotty` 205 | - `groups` 206 | - `gsettings` 207 | - `gsoelim` 208 | - `gtar` 209 | - `gtbl` 210 | - `gtroff` 211 | - `gunzip` 212 | - `gzexe` 213 | - `gzip` 214 | - `h2ph` 215 | - `hash` 216 | - `head` 217 | - `help` 218 | - `hexdump` 219 | - `history` 220 | - `hostid` 221 | - `i386` 222 | - `iconv` 223 | - `id` 224 | - `identify` 225 | - `if` 226 | - `igawk` 227 | - `import` 228 | - `in` 229 | - `info` 230 | - `infocmp` 231 | - `infokey` 232 | - `infotocap` 233 | - `install` 234 | - `ionice` 235 | - `ipcmk` 236 | - `ipcrm` 237 | - `ipcs` 238 | - `irb` 239 | - `isosize` 240 | - `java` 241 | - `java8` 242 | - `jjs` 243 | - `jjs8` 244 | - `jobs` 245 | - `join` 246 | - `jvmjar` 247 | - `keytool` 248 | - `keytool8` 249 | - `kill` 250 | - `killall` 251 | - `kmod` 252 | - `lastlog` 253 | - `lchfn` 254 | - `lchsh` 255 | - `ld` 256 | - `ld.bfd` 257 | - `ld.gold` 258 | - `ldd` 259 | - `let` 260 | - `link` 261 | - `linux32` 262 | - `linux64` 263 | - `ln` 264 | - `local` 265 | - `locale` 266 | - `localedef` 267 | - `logger` 268 | - `login` 269 | - `logname` 270 | - `logout` 271 | - `look` 272 | - `ls` 273 | - `lsblk` 274 | - `lscpu` 275 | - `lsipc` 276 | - `lslocks` 277 | - `lslogins` 278 | - `lsmem` 279 | - `lsns` 280 | - `lua` 281 | - `luac` 282 | - `make` 283 | - `makedb` 284 | - `mapfile` 285 | - `mcookie` 286 | - `md5sum` 287 | - `mkdir` 288 | - `mkfifo` 289 | - `mkfontdir` 290 | - `mkfontscale` 291 | - `mknod` 292 | - `mktemp` 293 | - `modutil` 294 | - `mogrify` 295 | - `montage` 296 | - `more` 297 | - `mountpoint` 298 | - `mv` 299 | - `namei` 300 | - `neqn` 301 | - `nice` 302 | - `nl` 303 | - `nm` 304 | - `nohup` 305 | - `nproc` 306 | - `nroff` 307 | - `nsenter` 308 | - `nss-policy-check` 309 | - `numfmt` 310 | - `objcopy` 311 | - `objdump` 312 | - `od` 313 | - `oldfind` 314 | - `openssl` 315 | - `orbd` 316 | - `orbd8` 317 | - `p11-kit` 318 | - `pack200` 319 | - `pack2008` 320 | - `pal2rgb` 321 | - `paste` 322 | - `patch` 323 | - `pathchk` 324 | - `peekfd` 325 | - `perl` 326 | - `perl5.16.3` 327 | - `perlbug` 328 | - `perldoc` 329 | - `perlthanks` 330 | - `pgawk` 331 | - `pgrep` 332 | - `pic` 333 | - `piconv` 334 | - `pinentry` 335 | - `pinentry-curses` 336 | - `pinky` 337 | - `pip-3.6` 338 | - `pk12util` 339 | - `pkg-config` 340 | - `pkill` 341 | - `pl2pm` 342 | - `pldd` 343 | - `pmap` 344 | - `pod2html` 345 | - `pod2man` 346 | - `pod2text` 347 | - `pod2usage` 348 | - `policytool` 349 | - `policytool8` 350 | - `popd` 351 | - `post-grohtml` 352 | - `ppm2tiff` 353 | - `pr` 354 | - `pre-grohtml` 355 | - `preconv` 356 | - `printenv` 357 | - `printf` 358 | - `prlimit` 359 | - `prtstat` 360 | - `ps` 361 | - `psed` 362 | - `pstree` 363 | - `pstree.x11` 364 | - `pstruct` 365 | - `ptx` 366 | - `pushd` 367 | - `pwd` 368 | - `pwdx` 369 | - `pwmake` 370 | - `pwscore` 371 | - `pydoc` 372 | - `pydoc2.7` 373 | - `pydoc27` 374 | - `pydoc3` 375 | - `pydoc3.6` 376 | - `python` 377 | - `python2.7` 378 | - `python27` 379 | - `python3` 380 | - `python3.6` 381 | - `python3.6m` 382 | - `python36` 383 | - `pyvenv3` 384 | - `pyvenv3.6` 385 | - `rake` 386 | - `ranlib` 387 | - `ras2tiff` 388 | - `raw` 389 | - `raw2tiff` 390 | - `rdoc` 391 | - `read` 392 | - `readarray` 393 | - `readelf` 394 | - `readlink` 395 | - `readonly` 396 | - `realpath` 397 | - `rebuild-jar-repository` 398 | - `rebuild-security-providers` 399 | - `rename` 400 | - `renice` 401 | - `reset` 402 | - `return` 403 | - `rev` 404 | - `rgb2ycbcr` 405 | - `ri` 406 | - `rm` 407 | - `rmdir` 408 | - `rmid` 409 | - `rmid8` 410 | - `rmiregistry` 411 | - `rmiregistry8` 412 | - `rpcgen` 413 | - `rpm` 414 | - `rpm2cpio` 415 | - `rpmdb` 416 | - `rpmkeys` 417 | - `rpmquery` 418 | - `rpmverify` 419 | - `ruby` 420 | - `runcon` 421 | - `s2p` 422 | - `script` 423 | - `scriptreplay` 424 | - `sctp_darn` 425 | - `sctp_status` 426 | - `sctp_test` 427 | - `sdiff` 428 | - `sed` 429 | - `select` 430 | - `seq` 431 | - `servertool` 432 | - `servertool8` 433 | - `set` 434 | - `setarch` 435 | - `setpriv` 436 | - `setsid` 437 | - `setterm` 438 | - `setup-nsssysinit` 439 | - `setup-nsssysinit.sh` 440 | - `sh` 441 | - `sha1sum` 442 | - `sha224sum` 443 | - `sha256sum` 444 | - `sha384sum` 445 | - `sha512sum` 446 | - `shift` 447 | - `shopt` 448 | - `shred` 449 | - `shuf` 450 | - `signver` 451 | - `size` 452 | - `skill` 453 | - `slabtop` 454 | - `sleep` 455 | - `snice` 456 | - `soelim` 457 | - `sort` 458 | - `sotruss` 459 | - `source` 460 | - `splain` 461 | - `split` 462 | - `sprof` 463 | - `sqlite3` 464 | - `ssltap` 465 | - `stat` 466 | - `stdbuf` 467 | - `stream` 468 | - `strings` 469 | - `strip` 470 | - `stty` 471 | - `sum` 472 | - `suspend` 473 | - `sync` 474 | - `tabs` 475 | - `tac` 476 | - `tail` 477 | - `tailf` 478 | - `tar` 479 | - `taskset` 480 | - `tbl` 481 | - `tee` 482 | - `test` 483 | - `then` 484 | - `thumbnail` 485 | - `tic` 486 | - `tiff2bw` 487 | - `tiff2pdf` 488 | - `tiff2ps` 489 | - `tiff2rgba` 490 | - `tiffcmp` 491 | - `tiffcp` 492 | - `tiffcrop` 493 | - `tiffdither` 494 | - `tiffdump` 495 | - `tiffinfo` 496 | - `tiffmedian` 497 | - `tiffset` 498 | - `tiffsplit` 499 | - `time` 500 | - `timeout` 501 | - `times` 502 | - `tload` 503 | - `tnameserv` 504 | - `tnameserv8` 505 | - `toe` 506 | - `top` 507 | - `touch` 508 | - `tput` 509 | - `tr` 510 | - `trap` 511 | - `troff` 512 | - `true` 513 | - `truncate` 514 | - `tset` 515 | - `tsort` 516 | - `ttmkfdir` 517 | - `tty` 518 | - `type` 519 | - `typeset` 520 | - `tzselect` 521 | - `ucs2any` 522 | - `ul` 523 | - `ulimit` 524 | - `umask` 525 | - `unalias` 526 | - `uname` 527 | - `unexpand` 528 | - `uniq` 529 | - `unlink` 530 | - `unpack200` 531 | - `unpack2008` 532 | - `unset` 533 | - `unshare` 534 | - `until` 535 | - `unxz` 536 | - `unzip` 537 | - `unzipsfx` 538 | - `update-ca-trust` 539 | - `update-mime-database` 540 | - `uptime` 541 | - `urlgrabber` 542 | - `urlgrabber-2.7` 543 | - `users` 544 | - `utmpdump` 545 | - `uuidgen` 546 | - `vdir` 547 | - `vmstat` 548 | - `w` 549 | - `wait` 550 | - `watch` 551 | - `watchgnupg` 552 | - `wc` 553 | - `wdctl` 554 | - `whereis` 555 | - `which` 556 | - `while` 557 | - `who` 558 | - `whoami` 559 | - `withsctp` 560 | - `x86_64` 561 | - `xargs` 562 | - `xmlcatalog` 563 | - `xmllint` 564 | - `xmlwf` 565 | - `xsltproc` 566 | - `xz` 567 | - `xzcat` 568 | - `xzcmp` 569 | - `xzdec` 570 | - `xzdiff` 571 | - `xzegrep` 572 | - `xzfgrep` 573 | - `xzgrep` 574 | - `xzless` 575 | - `xzmore` 576 | - `yes` 577 | - `yum` 578 | - `zcat` 579 | - `zcmp` 580 | - `zdiff` 581 | - `zegrep` 582 | - `zfgrep` 583 | - `zforce` 584 | - `zgrep` 585 | - `zipgrep` 586 | - `zipinfo` 587 | - `zless` 588 | - `zmore` 589 | - `znew` 590 | - `zsoelim` 591 | - `{` 592 | - `}` 593 | -------------------------------------------------------------------------------- /_python3.6.md: -------------------------------------------------------------------------------- 1 | # AWS Lambda shell commands for `python3.6` runtime 2 | ### Last updated: 2021-08-05T16:40:24.653Z from `us-west-1` 3 | 4 | ## Available AWS Lambda shell commands, shortcuts, and syntax 5 | 6 | - `!` 7 | - `.` 8 | - `:` 9 | - `[` 10 | - `[[` 11 | - `]]` 12 | - `a2p` 13 | - `addr2line` 14 | - `alias` 15 | - `animate` 16 | - `ar` 17 | - `arch` 18 | - `as` 19 | - `aserver` 20 | - `awk` 21 | - `base64` 22 | - `basename` 23 | - `bash` 24 | - `bashbug` 25 | - `bashbug-64` 26 | - `bdftopcf` 27 | - `berkeley_db_svc` 28 | - `bg` 29 | - `bind` 30 | - `bmp2tiff` 31 | - `break` 32 | - `build-classpath` 33 | - `build-classpath-directory` 34 | - `build-jar-repository` 35 | - `builtin` 36 | - `bunzip2` 37 | - `bzcat` 38 | - `bzcmp` 39 | - `bzdiff` 40 | - `bzgrep` 41 | - `bzip2` 42 | - `bzip2recover` 43 | - `bzless` 44 | - `bzmore` 45 | - `c++filt` 46 | - `c2ph` 47 | - `ca-legacy` 48 | - `cairo-sphinx` 49 | - `cal` 50 | - `caller` 51 | - `captoinfo` 52 | - `case` 53 | - `cat` 54 | - `catchsegv` 55 | - `cd` 56 | - `certutil` 57 | - `chcon` 58 | - `check-binary-files` 59 | - `checksctp` 60 | - `chgrp` 61 | - `chmem` 62 | - `chmod` 63 | - `chown` 64 | - `chrt` 65 | - `cksum` 66 | - `clean-binary-files` 67 | - `clear` 68 | - `cmp` 69 | - `cmsutil` 70 | - `col` 71 | - `colcrt` 72 | - `colrm` 73 | - `column` 74 | - `comm` 75 | - `command` 76 | - `compare` 77 | - `compgen` 78 | - `complete` 79 | - `compopt` 80 | - `composite` 81 | - `conjure` 82 | - `continue` 83 | - `convert` 84 | - `coproc` 85 | - `cp` 86 | - `cpio` 87 | - `create-jar-links` 88 | - `crlutil` 89 | - `csplit` 90 | - `curl` 91 | - `cut` 92 | - `date` 93 | - `db_archive` 94 | - `db_checkpoint` 95 | - `db_codegen` 96 | - `db_deadlock` 97 | - `db_dump` 98 | - `db_dump185` 99 | - `db_hotbackup` 100 | - `db_load` 101 | - `db_printlog` 102 | - `db_recover` 103 | - `db_stat` 104 | - `db_upgrade` 105 | - `db_verify` 106 | - `dd` 107 | - `declare` 108 | - `df` 109 | - `diff` 110 | - `diff-jars` 111 | - `diff3` 112 | - `dir` 113 | - `dircolors` 114 | - `dirname` 115 | - `dirs` 116 | - `disown` 117 | - `display` 118 | - `dmesg` 119 | - `do` 120 | - `done` 121 | - `du` 122 | - `dwp` 123 | - `easy_install` 124 | - `easy_install-3.6` 125 | - `echo` 126 | - `egrep` 127 | - `eject` 128 | - `elfedit` 129 | - `elif` 130 | - `else` 131 | - `enable` 132 | - `env` 133 | - `eqn` 134 | - `esac` 135 | - `eval` 136 | - `exec` 137 | - `exit` 138 | - `expand` 139 | - `export` 140 | - `expr` 141 | - `factor` 142 | - `fallocate` 143 | - `false` 144 | - `fax2ps` 145 | - `fax2tiff` 146 | - `fc` 147 | - `fc-cache` 148 | - `fc-cat` 149 | - `fc-list` 150 | - `fc-match` 151 | - `fc-query` 152 | - `fc-scan` 153 | - `fg` 154 | - `fgrep` 155 | - `fi` 156 | - `file` 157 | - `find` 158 | - `find-jar` 159 | - `find2perl` 160 | - `findmnt` 161 | - `flock` 162 | - `fmt` 163 | - `fold` 164 | - `fonttosfnt` 165 | - `for` 166 | - `free` 167 | - `function` 168 | - `funzip` 169 | - `gawk` 170 | - `gdbus` 171 | - `gencat` 172 | - `geqn` 173 | - `getconf` 174 | - `getent` 175 | - `getopt` 176 | - `getopts` 177 | - `gif2tiff` 178 | - `gio-querymodules-64` 179 | - `glib-compile-schemas` 180 | - `gmake` 181 | - `gneqn` 182 | - `gnroff` 183 | - `gpg` 184 | - `gpg-agent` 185 | - `gpg-connect-agent` 186 | - `gpg-error` 187 | - `gpg-zip` 188 | - `gpg-zip2` 189 | - `gpg2` 190 | - `gpgconf` 191 | - `gpgparsemail` 192 | - `gpgsplit` 193 | - `gpgsplit2` 194 | - `gpgv` 195 | - `gpgv2` 196 | - `gpic` 197 | - `gprof` 198 | - `grep` 199 | - `groff` 200 | - `grops` 201 | - `grotty` 202 | - `groups` 203 | - `gsettings` 204 | - `gsoelim` 205 | - `gtar` 206 | - `gtbl` 207 | - `gtroff` 208 | - `gunzip` 209 | - `gzexe` 210 | - `gzip` 211 | - `h2ph` 212 | - `hash` 213 | - `head` 214 | - `help` 215 | - `hexdump` 216 | - `history` 217 | - `hostid` 218 | - `i386` 219 | - `iconv` 220 | - `id` 221 | - `identify` 222 | - `if` 223 | - `igawk` 224 | - `import` 225 | - `in` 226 | - `info` 227 | - `infocmp` 228 | - `infokey` 229 | - `infotocap` 230 | - `install` 231 | - `ionice` 232 | - `ipcmk` 233 | - `ipcrm` 234 | - `ipcs` 235 | - `isosize` 236 | - `java` 237 | - `java8` 238 | - `jjs` 239 | - `jjs8` 240 | - `jobs` 241 | - `join` 242 | - `jvmjar` 243 | - `keytool` 244 | - `keytool8` 245 | - `kill` 246 | - `killall` 247 | - `kmod` 248 | - `lastlog` 249 | - `lchfn` 250 | - `lchsh` 251 | - `ld` 252 | - `ld.bfd` 253 | - `ld.gold` 254 | - `ldd` 255 | - `let` 256 | - `link` 257 | - `linux32` 258 | - `linux64` 259 | - `ln` 260 | - `local` 261 | - `locale` 262 | - `localedef` 263 | - `logger` 264 | - `login` 265 | - `logname` 266 | - `logout` 267 | - `look` 268 | - `ls` 269 | - `lsblk` 270 | - `lscpu` 271 | - `lsipc` 272 | - `lslocks` 273 | - `lslogins` 274 | - `lsmem` 275 | - `lsns` 276 | - `lua` 277 | - `luac` 278 | - `make` 279 | - `makedb` 280 | - `mapfile` 281 | - `mcookie` 282 | - `md5sum` 283 | - `mkdir` 284 | - `mkfifo` 285 | - `mkfontdir` 286 | - `mkfontscale` 287 | - `mknod` 288 | - `mktemp` 289 | - `modutil` 290 | - `mogrify` 291 | - `montage` 292 | - `more` 293 | - `mountpoint` 294 | - `mv` 295 | - `namei` 296 | - `neqn` 297 | - `nice` 298 | - `nl` 299 | - `nm` 300 | - `nohup` 301 | - `nproc` 302 | - `nroff` 303 | - `nsenter` 304 | - `nss-policy-check` 305 | - `numfmt` 306 | - `objcopy` 307 | - `objdump` 308 | - `od` 309 | - `oldfind` 310 | - `openssl` 311 | - `orbd` 312 | - `orbd8` 313 | - `p11-kit` 314 | - `pack200` 315 | - `pack2008` 316 | - `pal2rgb` 317 | - `paste` 318 | - `patch` 319 | - `pathchk` 320 | - `peekfd` 321 | - `perl` 322 | - `perl5.16.3` 323 | - `perlbug` 324 | - `perldoc` 325 | - `perlthanks` 326 | - `pgawk` 327 | - `pgrep` 328 | - `pic` 329 | - `piconv` 330 | - `pinentry` 331 | - `pinentry-curses` 332 | - `pinky` 333 | - `pip` 334 | - `pip-3.6` 335 | - `pip3` 336 | - `pip3.6` 337 | - `pk12util` 338 | - `pkg-config` 339 | - `pkill` 340 | - `pl2pm` 341 | - `pldd` 342 | - `pmap` 343 | - `pod2html` 344 | - `pod2man` 345 | - `pod2text` 346 | - `pod2usage` 347 | - `policytool` 348 | - `policytool8` 349 | - `popd` 350 | - `post-grohtml` 351 | - `ppm2tiff` 352 | - `pr` 353 | - `pre-grohtml` 354 | - `preconv` 355 | - `printenv` 356 | - `printf` 357 | - `prlimit` 358 | - `prtstat` 359 | - `ps` 360 | - `psed` 361 | - `pstree` 362 | - `pstree.x11` 363 | - `pstruct` 364 | - `ptx` 365 | - `pushd` 366 | - `pwd` 367 | - `pwdx` 368 | - `pwmake` 369 | - `pwscore` 370 | - `pydoc` 371 | - `pydoc2.7` 372 | - `pydoc27` 373 | - `pydoc3` 374 | - `pydoc3.6` 375 | - `python` 376 | - `python-config` 377 | - `python2.7` 378 | - `python27` 379 | - `python3` 380 | - `python3-config` 381 | - `python3.6` 382 | - `python3.6-config` 383 | - `python3.6m` 384 | - `python3.6m-config` 385 | - `python36` 386 | - `pyvenv` 387 | - `pyvenv-3.6` 388 | - `pyvenv3` 389 | - `pyvenv3.6` 390 | - `ranlib` 391 | - `ras2tiff` 392 | - `raw` 393 | - `raw2tiff` 394 | - `read` 395 | - `readarray` 396 | - `readelf` 397 | - `readlink` 398 | - `readonly` 399 | - `realpath` 400 | - `rebuild-jar-repository` 401 | - `rebuild-security-providers` 402 | - `rename` 403 | - `renice` 404 | - `reset` 405 | - `return` 406 | - `rev` 407 | - `rgb2ycbcr` 408 | - `rm` 409 | - `rmdir` 410 | - `rmid` 411 | - `rmid8` 412 | - `rmiregistry` 413 | - `rmiregistry8` 414 | - `rpcgen` 415 | - `rpm` 416 | - `rpm2cpio` 417 | - `rpmdb` 418 | - `rpmkeys` 419 | - `rpmquery` 420 | - `rpmverify` 421 | - `runcon` 422 | - `s2p` 423 | - `script` 424 | - `scriptreplay` 425 | - `sctp_darn` 426 | - `sctp_status` 427 | - `sctp_test` 428 | - `sdiff` 429 | - `sed` 430 | - `select` 431 | - `seq` 432 | - `servertool` 433 | - `servertool8` 434 | - `set` 435 | - `setarch` 436 | - `setpriv` 437 | - `setsid` 438 | - `setterm` 439 | - `setup-nsssysinit` 440 | - `setup-nsssysinit.sh` 441 | - `sh` 442 | - `sha1sum` 443 | - `sha224sum` 444 | - `sha256sum` 445 | - `sha384sum` 446 | - `sha512sum` 447 | - `shift` 448 | - `shopt` 449 | - `shred` 450 | - `shuf` 451 | - `signver` 452 | - `size` 453 | - `skill` 454 | - `slabtop` 455 | - `sleep` 456 | - `snice` 457 | - `soelim` 458 | - `sort` 459 | - `sotruss` 460 | - `source` 461 | - `splain` 462 | - `split` 463 | - `sprof` 464 | - `sqlite3` 465 | - `ssltap` 466 | - `stat` 467 | - `stdbuf` 468 | - `stream` 469 | - `strings` 470 | - `strip` 471 | - `stty` 472 | - `sum` 473 | - `suspend` 474 | - `sync` 475 | - `tabs` 476 | - `tac` 477 | - `tail` 478 | - `tailf` 479 | - `tar` 480 | - `taskset` 481 | - `tbl` 482 | - `tee` 483 | - `test` 484 | - `then` 485 | - `thumbnail` 486 | - `tic` 487 | - `tiff2bw` 488 | - `tiff2pdf` 489 | - `tiff2ps` 490 | - `tiff2rgba` 491 | - `tiffcmp` 492 | - `tiffcp` 493 | - `tiffcrop` 494 | - `tiffdither` 495 | - `tiffdump` 496 | - `tiffinfo` 497 | - `tiffmedian` 498 | - `tiffset` 499 | - `tiffsplit` 500 | - `time` 501 | - `timeout` 502 | - `times` 503 | - `tload` 504 | - `tnameserv` 505 | - `tnameserv8` 506 | - `toe` 507 | - `top` 508 | - `touch` 509 | - `tput` 510 | - `tr` 511 | - `trap` 512 | - `troff` 513 | - `true` 514 | - `truncate` 515 | - `tset` 516 | - `tsort` 517 | - `ttmkfdir` 518 | - `tty` 519 | - `type` 520 | - `typeset` 521 | - `tzselect` 522 | - `ucs2any` 523 | - `ul` 524 | - `ulimit` 525 | - `umask` 526 | - `unalias` 527 | - `uname` 528 | - `unexpand` 529 | - `uniq` 530 | - `unlink` 531 | - `unpack200` 532 | - `unpack2008` 533 | - `unset` 534 | - `unshare` 535 | - `until` 536 | - `unxz` 537 | - `unzip` 538 | - `unzipsfx` 539 | - `update-ca-trust` 540 | - `update-mime-database` 541 | - `uptime` 542 | - `urlgrabber` 543 | - `urlgrabber-2.7` 544 | - `users` 545 | - `utmpdump` 546 | - `uuidgen` 547 | - `vdir` 548 | - `vmstat` 549 | - `w` 550 | - `wait` 551 | - `watch` 552 | - `watchgnupg` 553 | - `wc` 554 | - `wdctl` 555 | - `whereis` 556 | - `which` 557 | - `while` 558 | - `who` 559 | - `whoami` 560 | - `withsctp` 561 | - `x86_64` 562 | - `xargs` 563 | - `xmlcatalog` 564 | - `xmllint` 565 | - `xmlwf` 566 | - `xsltproc` 567 | - `xz` 568 | - `xzcat` 569 | - `xzcmp` 570 | - `xzdec` 571 | - `xzdiff` 572 | - `xzegrep` 573 | - `xzfgrep` 574 | - `xzgrep` 575 | - `xzless` 576 | - `xzmore` 577 | - `yes` 578 | - `yum` 579 | - `zcat` 580 | - `zcmp` 581 | - `zdiff` 582 | - `zegrep` 583 | - `zfgrep` 584 | - `zforce` 585 | - `zgrep` 586 | - `zipgrep` 587 | - `zipinfo` 588 | - `zless` 589 | - `zmore` 590 | - `znew` 591 | - `zsoelim` 592 | - `{` 593 | - `}` 594 | -------------------------------------------------------------------------------- /_python3.7.md: -------------------------------------------------------------------------------- 1 | # AWS Lambda shell commands for `python3.7` runtime 2 | ### Last updated: 2021-08-05T16:40:24.653Z from `us-west-1` 3 | 4 | ## Available AWS Lambda shell commands, shortcuts, and syntax 5 | 6 | - `!` 7 | - `.` 8 | - `:` 9 | - `[` 10 | - `[[` 11 | - `]]` 12 | - `a2p` 13 | - `addr2line` 14 | - `alias` 15 | - `animate` 16 | - `ar` 17 | - `arch` 18 | - `as` 19 | - `aserver` 20 | - `awk` 21 | - `base64` 22 | - `basename` 23 | - `bash` 24 | - `bashbug` 25 | - `bashbug-64` 26 | - `bdftopcf` 27 | - `berkeley_db_svc` 28 | - `bg` 29 | - `bind` 30 | - `bmp2tiff` 31 | - `break` 32 | - `build-classpath` 33 | - `build-classpath-directory` 34 | - `build-jar-repository` 35 | - `builtin` 36 | - `bunzip2` 37 | - `bzcat` 38 | - `bzcmp` 39 | - `bzdiff` 40 | - `bzgrep` 41 | - `bzip2` 42 | - `bzip2recover` 43 | - `bzless` 44 | - `bzmore` 45 | - `c++filt` 46 | - `c2ph` 47 | - `ca-legacy` 48 | - `cairo-sphinx` 49 | - `cal` 50 | - `caller` 51 | - `captoinfo` 52 | - `case` 53 | - `cat` 54 | - `catchsegv` 55 | - `cd` 56 | - `certutil` 57 | - `chcon` 58 | - `check-binary-files` 59 | - `checksctp` 60 | - `chgrp` 61 | - `chmem` 62 | - `chmod` 63 | - `chown` 64 | - `chrt` 65 | - `cksum` 66 | - `clean-binary-files` 67 | - `clear` 68 | - `cmp` 69 | - `cmsutil` 70 | - `col` 71 | - `colcrt` 72 | - `colrm` 73 | - `column` 74 | - `comm` 75 | - `command` 76 | - `compare` 77 | - `compgen` 78 | - `complete` 79 | - `compopt` 80 | - `composite` 81 | - `conjure` 82 | - `continue` 83 | - `convert` 84 | - `coproc` 85 | - `cp` 86 | - `cpio` 87 | - `create-jar-links` 88 | - `crlutil` 89 | - `csplit` 90 | - `curl` 91 | - `cut` 92 | - `date` 93 | - `db_archive` 94 | - `db_checkpoint` 95 | - `db_codegen` 96 | - `db_deadlock` 97 | - `db_dump` 98 | - `db_dump185` 99 | - `db_hotbackup` 100 | - `db_load` 101 | - `db_printlog` 102 | - `db_recover` 103 | - `db_stat` 104 | - `db_upgrade` 105 | - `db_verify` 106 | - `dd` 107 | - `declare` 108 | - `df` 109 | - `diff` 110 | - `diff-jars` 111 | - `diff3` 112 | - `dir` 113 | - `dircolors` 114 | - `dirname` 115 | - `dirs` 116 | - `disown` 117 | - `display` 118 | - `dmesg` 119 | - `do` 120 | - `done` 121 | - `du` 122 | - `dwp` 123 | - `easy_install` 124 | - `easy_install-3.6` 125 | - `easy_install-3.7` 126 | - `echo` 127 | - `egrep` 128 | - `eject` 129 | - `elfedit` 130 | - `elif` 131 | - `else` 132 | - `enable` 133 | - `env` 134 | - `eqn` 135 | - `esac` 136 | - `eval` 137 | - `exec` 138 | - `exit` 139 | - `expand` 140 | - `export` 141 | - `expr` 142 | - `factor` 143 | - `fallocate` 144 | - `false` 145 | - `fax2ps` 146 | - `fax2tiff` 147 | - `fc` 148 | - `fc-cache` 149 | - `fc-cat` 150 | - `fc-list` 151 | - `fc-match` 152 | - `fc-query` 153 | - `fc-scan` 154 | - `fg` 155 | - `fgrep` 156 | - `fi` 157 | - `file` 158 | - `find` 159 | - `find-jar` 160 | - `find2perl` 161 | - `findmnt` 162 | - `flock` 163 | - `fmt` 164 | - `fold` 165 | - `fonttosfnt` 166 | - `for` 167 | - `free` 168 | - `function` 169 | - `funzip` 170 | - `gawk` 171 | - `gdbus` 172 | - `gencat` 173 | - `geqn` 174 | - `getconf` 175 | - `getent` 176 | - `getopt` 177 | - `getopts` 178 | - `gif2tiff` 179 | - `gio-querymodules-64` 180 | - `glib-compile-schemas` 181 | - `gmake` 182 | - `gneqn` 183 | - `gnroff` 184 | - `gpg` 185 | - `gpg-agent` 186 | - `gpg-connect-agent` 187 | - `gpg-error` 188 | - `gpg-zip` 189 | - `gpg-zip2` 190 | - `gpg2` 191 | - `gpgconf` 192 | - `gpgparsemail` 193 | - `gpgsplit` 194 | - `gpgsplit2` 195 | - `gpgv` 196 | - `gpgv2` 197 | - `gpic` 198 | - `gprof` 199 | - `grep` 200 | - `groff` 201 | - `grops` 202 | - `grotty` 203 | - `groups` 204 | - `gsettings` 205 | - `gsoelim` 206 | - `gtar` 207 | - `gtbl` 208 | - `gtroff` 209 | - `gunzip` 210 | - `gzexe` 211 | - `gzip` 212 | - `h2ph` 213 | - `hash` 214 | - `head` 215 | - `help` 216 | - `hexdump` 217 | - `history` 218 | - `hostid` 219 | - `i386` 220 | - `iconv` 221 | - `id` 222 | - `identify` 223 | - `if` 224 | - `igawk` 225 | - `import` 226 | - `in` 227 | - `info` 228 | - `infocmp` 229 | - `infokey` 230 | - `infotocap` 231 | - `install` 232 | - `ionice` 233 | - `ipcmk` 234 | - `ipcrm` 235 | - `ipcs` 236 | - `isosize` 237 | - `java` 238 | - `java8` 239 | - `jjs` 240 | - `jjs8` 241 | - `jobs` 242 | - `join` 243 | - `jvmjar` 244 | - `keytool` 245 | - `keytool8` 246 | - `kill` 247 | - `killall` 248 | - `kmod` 249 | - `lastlog` 250 | - `lchfn` 251 | - `lchsh` 252 | - `ld` 253 | - `ld.bfd` 254 | - `ld.gold` 255 | - `ldd` 256 | - `let` 257 | - `link` 258 | - `linux32` 259 | - `linux64` 260 | - `ln` 261 | - `local` 262 | - `locale` 263 | - `localedef` 264 | - `logger` 265 | - `login` 266 | - `logname` 267 | - `logout` 268 | - `look` 269 | - `ls` 270 | - `lsblk` 271 | - `lscpu` 272 | - `lsipc` 273 | - `lslocks` 274 | - `lslogins` 275 | - `lsmem` 276 | - `lsns` 277 | - `lua` 278 | - `luac` 279 | - `make` 280 | - `makedb` 281 | - `mapfile` 282 | - `mcookie` 283 | - `md5sum` 284 | - `mkdir` 285 | - `mkfifo` 286 | - `mkfontdir` 287 | - `mkfontscale` 288 | - `mknod` 289 | - `mktemp` 290 | - `modutil` 291 | - `mogrify` 292 | - `montage` 293 | - `more` 294 | - `mountpoint` 295 | - `mv` 296 | - `namei` 297 | - `neqn` 298 | - `nice` 299 | - `nl` 300 | - `nm` 301 | - `nohup` 302 | - `nproc` 303 | - `nroff` 304 | - `nsenter` 305 | - `nss-policy-check` 306 | - `numfmt` 307 | - `objcopy` 308 | - `objdump` 309 | - `od` 310 | - `oldfind` 311 | - `openssl` 312 | - `orbd` 313 | - `orbd8` 314 | - `p11-kit` 315 | - `pack200` 316 | - `pack2008` 317 | - `pal2rgb` 318 | - `paste` 319 | - `patch` 320 | - `pathchk` 321 | - `peekfd` 322 | - `perl` 323 | - `perl5.16.3` 324 | - `perlbug` 325 | - `perldoc` 326 | - `perlthanks` 327 | - `pgawk` 328 | - `pgrep` 329 | - `pic` 330 | - `piconv` 331 | - `pinentry` 332 | - `pinentry-curses` 333 | - `pinky` 334 | - `pip` 335 | - `pip-3.6` 336 | - `pip3` 337 | - `pip3.7` 338 | - `pk12util` 339 | - `pkg-config` 340 | - `pkill` 341 | - `pl2pm` 342 | - `pldd` 343 | - `pmap` 344 | - `pod2html` 345 | - `pod2man` 346 | - `pod2text` 347 | - `pod2usage` 348 | - `policytool` 349 | - `policytool8` 350 | - `popd` 351 | - `post-grohtml` 352 | - `ppm2tiff` 353 | - `pr` 354 | - `pre-grohtml` 355 | - `preconv` 356 | - `printenv` 357 | - `printf` 358 | - `prlimit` 359 | - `prtstat` 360 | - `ps` 361 | - `psed` 362 | - `pstree` 363 | - `pstree.x11` 364 | - `pstruct` 365 | - `ptx` 366 | - `pushd` 367 | - `pwd` 368 | - `pwdx` 369 | - `pwmake` 370 | - `pwscore` 371 | - `pydoc` 372 | - `pydoc2.7` 373 | - `pydoc27` 374 | - `pydoc3` 375 | - `pydoc3.6` 376 | - `pydoc3.7` 377 | - `python` 378 | - `python-config` 379 | - `python2.7` 380 | - `python27` 381 | - `python3` 382 | - `python3-config` 383 | - `python3.6` 384 | - `python3.6m` 385 | - `python3.7` 386 | - `python3.7-config` 387 | - `python3.7m` 388 | - `python3.7m-config` 389 | - `python36` 390 | - `pyvenv` 391 | - `pyvenv-3.7` 392 | - `pyvenv3` 393 | - `pyvenv3.6` 394 | - `ranlib` 395 | - `ras2tiff` 396 | - `raw` 397 | - `raw2tiff` 398 | - `read` 399 | - `readarray` 400 | - `readelf` 401 | - `readlink` 402 | - `readonly` 403 | - `realpath` 404 | - `rebuild-jar-repository` 405 | - `rebuild-security-providers` 406 | - `rename` 407 | - `renice` 408 | - `reset` 409 | - `return` 410 | - `rev` 411 | - `rgb2ycbcr` 412 | - `rm` 413 | - `rmdir` 414 | - `rmid` 415 | - `rmid8` 416 | - `rmiregistry` 417 | - `rmiregistry8` 418 | - `rpcgen` 419 | - `rpm` 420 | - `rpm2cpio` 421 | - `rpmdb` 422 | - `rpmkeys` 423 | - `rpmquery` 424 | - `rpmverify` 425 | - `runcon` 426 | - `s2p` 427 | - `script` 428 | - `scriptreplay` 429 | - `sctp_darn` 430 | - `sctp_status` 431 | - `sctp_test` 432 | - `sdiff` 433 | - `sed` 434 | - `select` 435 | - `seq` 436 | - `servertool` 437 | - `servertool8` 438 | - `set` 439 | - `setarch` 440 | - `setpriv` 441 | - `setsid` 442 | - `setterm` 443 | - `setup-nsssysinit` 444 | - `setup-nsssysinit.sh` 445 | - `sh` 446 | - `sha1sum` 447 | - `sha224sum` 448 | - `sha256sum` 449 | - `sha384sum` 450 | - `sha512sum` 451 | - `shift` 452 | - `shopt` 453 | - `shred` 454 | - `shuf` 455 | - `signver` 456 | - `size` 457 | - `skill` 458 | - `slabtop` 459 | - `sleep` 460 | - `snice` 461 | - `soelim` 462 | - `sort` 463 | - `sotruss` 464 | - `source` 465 | - `splain` 466 | - `split` 467 | - `sprof` 468 | - `sqlite3` 469 | - `ssltap` 470 | - `stat` 471 | - `stdbuf` 472 | - `stream` 473 | - `strings` 474 | - `strip` 475 | - `stty` 476 | - `sum` 477 | - `suspend` 478 | - `sync` 479 | - `tabs` 480 | - `tac` 481 | - `tail` 482 | - `tailf` 483 | - `tar` 484 | - `taskset` 485 | - `tbl` 486 | - `tee` 487 | - `test` 488 | - `then` 489 | - `thumbnail` 490 | - `tic` 491 | - `tiff2bw` 492 | - `tiff2pdf` 493 | - `tiff2ps` 494 | - `tiff2rgba` 495 | - `tiffcmp` 496 | - `tiffcp` 497 | - `tiffcrop` 498 | - `tiffdither` 499 | - `tiffdump` 500 | - `tiffinfo` 501 | - `tiffmedian` 502 | - `tiffset` 503 | - `tiffsplit` 504 | - `time` 505 | - `timeout` 506 | - `times` 507 | - `tload` 508 | - `tnameserv` 509 | - `tnameserv8` 510 | - `toe` 511 | - `top` 512 | - `touch` 513 | - `tput` 514 | - `tr` 515 | - `trap` 516 | - `troff` 517 | - `true` 518 | - `truncate` 519 | - `tset` 520 | - `tsort` 521 | - `ttmkfdir` 522 | - `tty` 523 | - `type` 524 | - `typeset` 525 | - `tzselect` 526 | - `ucs2any` 527 | - `ul` 528 | - `ulimit` 529 | - `umask` 530 | - `unalias` 531 | - `uname` 532 | - `unexpand` 533 | - `uniq` 534 | - `unlink` 535 | - `unpack200` 536 | - `unpack2008` 537 | - `unset` 538 | - `unshare` 539 | - `until` 540 | - `unxz` 541 | - `unzip` 542 | - `unzipsfx` 543 | - `update-ca-trust` 544 | - `update-mime-database` 545 | - `uptime` 546 | - `urlgrabber` 547 | - `urlgrabber-2.7` 548 | - `users` 549 | - `utmpdump` 550 | - `uuidgen` 551 | - `vdir` 552 | - `vmstat` 553 | - `w` 554 | - `wait` 555 | - `watch` 556 | - `watchgnupg` 557 | - `wc` 558 | - `wdctl` 559 | - `whereis` 560 | - `which` 561 | - `while` 562 | - `who` 563 | - `whoami` 564 | - `withsctp` 565 | - `x86_64` 566 | - `xargs` 567 | - `xmlcatalog` 568 | - `xmllint` 569 | - `xmlwf` 570 | - `xsltproc` 571 | - `xz` 572 | - `xzcat` 573 | - `xzcmp` 574 | - `xzdec` 575 | - `xzdiff` 576 | - `xzegrep` 577 | - `xzfgrep` 578 | - `xzgrep` 579 | - `xzless` 580 | - `xzmore` 581 | - `yes` 582 | - `yum` 583 | - `zcat` 584 | - `zcmp` 585 | - `zdiff` 586 | - `zegrep` 587 | - `zfgrep` 588 | - `zforce` 589 | - `zgrep` 590 | - `zipgrep` 591 | - `zipinfo` 592 | - `zless` 593 | - `zmore` 594 | - `znew` 595 | - `zsoelim` 596 | - `{` 597 | - `}` 598 | -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /data.json: -------------------------------------------------------------------------------- 1 | { 2 | "nodejs10.x": { 3 | "cmds": [ 4 | "!", 5 | ".", 6 | ":", 7 | "[", 8 | "[[", 9 | "]]", 10 | "alias", 11 | "arch", 12 | "awk", 13 | "base64", 14 | "basename", 15 | "bash", 16 | "bashbug", 17 | "bashbug-64", 18 | "bg", 19 | "bind", 20 | "break", 21 | "builtin", 22 | "ca-legacy", 23 | "caller", 24 | "captoinfo", 25 | "case", 26 | "cat", 27 | "catchsegv", 28 | "cd", 29 | "chcon", 30 | "chgrp", 31 | "chmod", 32 | "chown", 33 | "cksum", 34 | "clear", 35 | "comm", 36 | "command", 37 | "compgen", 38 | "complete", 39 | "compopt", 40 | "continue", 41 | "coproc", 42 | "cp", 43 | "csplit", 44 | "cut", 45 | "date", 46 | "dd", 47 | "declare", 48 | "df", 49 | "dgawk", 50 | "dir", 51 | "dircolors", 52 | "dirname", 53 | "dirs", 54 | "disown", 55 | "do", 56 | "done", 57 | "du", 58 | "echo", 59 | "egrep", 60 | "elif", 61 | "else", 62 | "enable", 63 | "env", 64 | "esac", 65 | "eval", 66 | "exec", 67 | "exit", 68 | "expand", 69 | "export", 70 | "expr", 71 | "factor", 72 | "false", 73 | "fc", 74 | "fg", 75 | "fgrep", 76 | "fi", 77 | "fmt", 78 | "fold", 79 | "for", 80 | "function", 81 | "gawk", 82 | "gencat", 83 | "getconf", 84 | "getent", 85 | "getopts", 86 | "grep", 87 | "groups", 88 | "hash", 89 | "head", 90 | "help", 91 | "history", 92 | "hostid", 93 | "iconv", 94 | "id", 95 | "if", 96 | "igawk", 97 | "in", 98 | "info", 99 | "infocmp", 100 | "infokey", 101 | "infotocap", 102 | "install", 103 | "jobs", 104 | "join", 105 | "kill", 106 | "ldd", 107 | "let", 108 | "link", 109 | "ln", 110 | "local", 111 | "locale", 112 | "localedef", 113 | "logname", 114 | "logout", 115 | "ls", 116 | "makedb", 117 | "mapfile", 118 | "md5sum", 119 | "mkdir", 120 | "mkfifo", 121 | "mknod", 122 | "mktemp", 123 | "mv", 124 | "nice", 125 | "nl", 126 | "node", 127 | "nohup", 128 | "npm", 129 | "nproc", 130 | "npx", 131 | "numfmt", 132 | "od", 133 | "p11-kit", 134 | "paste", 135 | "pathchk", 136 | "pgawk", 137 | "pinky", 138 | "pldd", 139 | "popd", 140 | "pr", 141 | "printenv", 142 | "printf", 143 | "ptx", 144 | "pushd", 145 | "pwd", 146 | "read", 147 | "readarray", 148 | "readlink", 149 | "readonly", 150 | "realpath", 151 | "reset", 152 | "return", 153 | "rm", 154 | "rmdir", 155 | "rpcgen", 156 | "runcon", 157 | "sed", 158 | "select", 159 | "seq", 160 | "set", 161 | "sh", 162 | "sha1sum", 163 | "sha224sum", 164 | "sha256sum", 165 | "sha384sum", 166 | "sha512sum", 167 | "shift", 168 | "shopt", 169 | "shred", 170 | "shuf", 171 | "sleep", 172 | "sort", 173 | "sotruss", 174 | "source", 175 | "split", 176 | "sprof", 177 | "stat", 178 | "stdbuf", 179 | "stty", 180 | "sum", 181 | "suspend", 182 | "sync", 183 | "tabs", 184 | "tac", 185 | "tail", 186 | "tee", 187 | "test", 188 | "then", 189 | "tic", 190 | "time", 191 | "timeout", 192 | "times", 193 | "toe", 194 | "touch", 195 | "tput", 196 | "tr", 197 | "trap", 198 | "true", 199 | "truncate", 200 | "trust", 201 | "tset", 202 | "tsort", 203 | "tty", 204 | "type", 205 | "typeset", 206 | "tzselect", 207 | "ulimit", 208 | "umask", 209 | "unalias", 210 | "uname", 211 | "unexpand", 212 | "uniq", 213 | "unlink", 214 | "unset", 215 | "until", 216 | "update-ca-trust", 217 | "users", 218 | "vdir", 219 | "wait", 220 | "wc", 221 | "while", 222 | "who", 223 | "whoami", 224 | "yes", 225 | "{", 226 | "}" 227 | ], 228 | "versions": [ 229 | { 230 | "name": "Node.js", 231 | "version": "v10.24.1" 232 | }, 233 | { 234 | "name": "npm", 235 | "version": "6.14.12" 236 | } 237 | ] 238 | }, 239 | "nodejs12.x": { 240 | "cmds": [ 241 | "!", 242 | ".", 243 | ":", 244 | "[", 245 | "[[", 246 | "]]", 247 | "alias", 248 | "arch", 249 | "awk", 250 | "base64", 251 | "basename", 252 | "bash", 253 | "bashbug", 254 | "bashbug-64", 255 | "bg", 256 | "bind", 257 | "break", 258 | "builtin", 259 | "ca-legacy", 260 | "caller", 261 | "captoinfo", 262 | "case", 263 | "cat", 264 | "catchsegv", 265 | "cd", 266 | "chcon", 267 | "chgrp", 268 | "chmod", 269 | "chown", 270 | "cksum", 271 | "clear", 272 | "comm", 273 | "command", 274 | "compgen", 275 | "complete", 276 | "compopt", 277 | "continue", 278 | "coproc", 279 | "cp", 280 | "csplit", 281 | "cut", 282 | "date", 283 | "dd", 284 | "declare", 285 | "df", 286 | "dgawk", 287 | "dir", 288 | "dircolors", 289 | "dirname", 290 | "dirs", 291 | "disown", 292 | "do", 293 | "done", 294 | "du", 295 | "echo", 296 | "egrep", 297 | "elif", 298 | "else", 299 | "enable", 300 | "env", 301 | "esac", 302 | "eval", 303 | "exec", 304 | "exit", 305 | "expand", 306 | "export", 307 | "expr", 308 | "factor", 309 | "false", 310 | "fc", 311 | "fg", 312 | "fgrep", 313 | "fi", 314 | "fmt", 315 | "fold", 316 | "for", 317 | "function", 318 | "gawk", 319 | "gencat", 320 | "getconf", 321 | "getent", 322 | "getopts", 323 | "grep", 324 | "groups", 325 | "hash", 326 | "head", 327 | "help", 328 | "history", 329 | "hostid", 330 | "iconv", 331 | "id", 332 | "if", 333 | "igawk", 334 | "in", 335 | "info", 336 | "infocmp", 337 | "infokey", 338 | "infotocap", 339 | "install", 340 | "jobs", 341 | "join", 342 | "kill", 343 | "ldd", 344 | "let", 345 | "link", 346 | "ln", 347 | "local", 348 | "locale", 349 | "localedef", 350 | "logname", 351 | "logout", 352 | "ls", 353 | "makedb", 354 | "mapfile", 355 | "md5sum", 356 | "mkdir", 357 | "mkfifo", 358 | "mknod", 359 | "mktemp", 360 | "mv", 361 | "nice", 362 | "nl", 363 | "node", 364 | "nohup", 365 | "npm", 366 | "nproc", 367 | "npx", 368 | "numfmt", 369 | "od", 370 | "p11-kit", 371 | "paste", 372 | "pathchk", 373 | "pgawk", 374 | "pinky", 375 | "pldd", 376 | "popd", 377 | "pr", 378 | "printenv", 379 | "printf", 380 | "ptx", 381 | "pushd", 382 | "pwd", 383 | "read", 384 | "readarray", 385 | "readlink", 386 | "readonly", 387 | "realpath", 388 | "reset", 389 | "return", 390 | "rm", 391 | "rmdir", 392 | "rpcgen", 393 | "runcon", 394 | "sed", 395 | "select", 396 | "seq", 397 | "set", 398 | "sh", 399 | "sha1sum", 400 | "sha224sum", 401 | "sha256sum", 402 | "sha384sum", 403 | "sha512sum", 404 | "shift", 405 | "shopt", 406 | "shred", 407 | "shuf", 408 | "sleep", 409 | "sort", 410 | "sotruss", 411 | "source", 412 | "split", 413 | "sprof", 414 | "stat", 415 | "stdbuf", 416 | "stty", 417 | "sum", 418 | "suspend", 419 | "sync", 420 | "tabs", 421 | "tac", 422 | "tail", 423 | "tee", 424 | "test", 425 | "then", 426 | "tic", 427 | "time", 428 | "timeout", 429 | "times", 430 | "toe", 431 | "touch", 432 | "tput", 433 | "tr", 434 | "trap", 435 | "true", 436 | "truncate", 437 | "trust", 438 | "tset", 439 | "tsort", 440 | "tty", 441 | "type", 442 | "typeset", 443 | "tzselect", 444 | "ulimit", 445 | "umask", 446 | "unalias", 447 | "uname", 448 | "unexpand", 449 | "uniq", 450 | "unlink", 451 | "unset", 452 | "until", 453 | "update-ca-trust", 454 | "users", 455 | "vdir", 456 | "wait", 457 | "wc", 458 | "while", 459 | "who", 460 | "whoami", 461 | "yes", 462 | "{", 463 | "}" 464 | ], 465 | "versions": [ 466 | { 467 | "name": "Node.js", 468 | "version": "v12.22.4" 469 | }, 470 | { 471 | "name": "npm", 472 | "version": "6.14.14" 473 | } 474 | ] 475 | }, 476 | "nodejs14.x": { 477 | "cmds": [ 478 | "!", 479 | ".", 480 | ":", 481 | "[", 482 | "[[", 483 | "]]", 484 | "alias", 485 | "arch", 486 | "awk", 487 | "base64", 488 | "basename", 489 | "bash", 490 | "bashbug", 491 | "bashbug-64", 492 | "bg", 493 | "bind", 494 | "break", 495 | "builtin", 496 | "ca-legacy", 497 | "caller", 498 | "captoinfo", 499 | "case", 500 | "cat", 501 | "catchsegv", 502 | "cd", 503 | "chcon", 504 | "chgrp", 505 | "chmod", 506 | "chown", 507 | "cksum", 508 | "clear", 509 | "comm", 510 | "command", 511 | "compgen", 512 | "complete", 513 | "compopt", 514 | "continue", 515 | "coproc", 516 | "cp", 517 | "csplit", 518 | "cut", 519 | "date", 520 | "dd", 521 | "declare", 522 | "df", 523 | "dgawk", 524 | "dir", 525 | "dircolors", 526 | "dirname", 527 | "dirs", 528 | "disown", 529 | "do", 530 | "done", 531 | "du", 532 | "echo", 533 | "egrep", 534 | "elif", 535 | "else", 536 | "enable", 537 | "env", 538 | "esac", 539 | "eval", 540 | "exec", 541 | "exit", 542 | "expand", 543 | "export", 544 | "expr", 545 | "factor", 546 | "false", 547 | "fc", 548 | "fg", 549 | "fgrep", 550 | "fi", 551 | "fmt", 552 | "fold", 553 | "for", 554 | "function", 555 | "gawk", 556 | "gencat", 557 | "getconf", 558 | "getent", 559 | "getopts", 560 | "grep", 561 | "groups", 562 | "hash", 563 | "head", 564 | "help", 565 | "history", 566 | "hostid", 567 | "iconv", 568 | "id", 569 | "if", 570 | "igawk", 571 | "in", 572 | "info", 573 | "infocmp", 574 | "infokey", 575 | "infotocap", 576 | "install", 577 | "jobs", 578 | "join", 579 | "kill", 580 | "ldd", 581 | "let", 582 | "link", 583 | "ln", 584 | "local", 585 | "locale", 586 | "localedef", 587 | "logname", 588 | "logout", 589 | "ls", 590 | "makedb", 591 | "mapfile", 592 | "md5sum", 593 | "mkdir", 594 | "mkfifo", 595 | "mknod", 596 | "mktemp", 597 | "mv", 598 | "nice", 599 | "nl", 600 | "node", 601 | "nohup", 602 | "npm", 603 | "nproc", 604 | "npx", 605 | "numfmt", 606 | "od", 607 | "p11-kit", 608 | "paste", 609 | "pathchk", 610 | "pgawk", 611 | "pinky", 612 | "pldd", 613 | "popd", 614 | "pr", 615 | "printenv", 616 | "printf", 617 | "ptx", 618 | "pushd", 619 | "pwd", 620 | "read", 621 | "readarray", 622 | "readlink", 623 | "readonly", 624 | "realpath", 625 | "reset", 626 | "return", 627 | "rm", 628 | "rmdir", 629 | "rpcgen", 630 | "runcon", 631 | "sed", 632 | "select", 633 | "seq", 634 | "set", 635 | "sh", 636 | "sha1sum", 637 | "sha224sum", 638 | "sha256sum", 639 | "sha384sum", 640 | "sha512sum", 641 | "shift", 642 | "shopt", 643 | "shred", 644 | "shuf", 645 | "sleep", 646 | "sort", 647 | "sotruss", 648 | "source", 649 | "split", 650 | "sprof", 651 | "stat", 652 | "stdbuf", 653 | "stty", 654 | "sum", 655 | "suspend", 656 | "sync", 657 | "tabs", 658 | "tac", 659 | "tail", 660 | "tee", 661 | "test", 662 | "then", 663 | "tic", 664 | "time", 665 | "timeout", 666 | "times", 667 | "toe", 668 | "touch", 669 | "tput", 670 | "tr", 671 | "trap", 672 | "true", 673 | "truncate", 674 | "trust", 675 | "tset", 676 | "tsort", 677 | "tty", 678 | "type", 679 | "typeset", 680 | "tzselect", 681 | "ulimit", 682 | "umask", 683 | "unalias", 684 | "uname", 685 | "unexpand", 686 | "uniq", 687 | "unlink", 688 | "unset", 689 | "until", 690 | "update-ca-trust", 691 | "users", 692 | "vdir", 693 | "wait", 694 | "wc", 695 | "while", 696 | "who", 697 | "whoami", 698 | "yes", 699 | "{", 700 | "}" 701 | ], 702 | "versions": [ 703 | { 704 | "name": "Node.js", 705 | "version": "v14.17.4" 706 | }, 707 | { 708 | "name": "npm", 709 | "version": "6.14.14" 710 | } 711 | ] 712 | }, 713 | "python3.6": { 714 | "cmds": [ 715 | "!", 716 | ".", 717 | ":", 718 | "[", 719 | "[[", 720 | "]]", 721 | "a2p", 722 | "addr2line", 723 | "alias", 724 | "animate", 725 | "ar", 726 | "arch", 727 | "as", 728 | "aserver", 729 | "awk", 730 | "base64", 731 | "basename", 732 | "bash", 733 | "bashbug", 734 | "bashbug-64", 735 | "bdftopcf", 736 | "berkeley_db_svc", 737 | "bg", 738 | "bind", 739 | "bmp2tiff", 740 | "break", 741 | "build-classpath", 742 | "build-classpath-directory", 743 | "build-jar-repository", 744 | "builtin", 745 | "bunzip2", 746 | "bzcat", 747 | "bzcmp", 748 | "bzdiff", 749 | "bzgrep", 750 | "bzip2", 751 | "bzip2recover", 752 | "bzless", 753 | "bzmore", 754 | "c++filt", 755 | "c2ph", 756 | "ca-legacy", 757 | "cairo-sphinx", 758 | "cal", 759 | "caller", 760 | "captoinfo", 761 | "case", 762 | "cat", 763 | "catchsegv", 764 | "cd", 765 | "certutil", 766 | "chcon", 767 | "check-binary-files", 768 | "checksctp", 769 | "chgrp", 770 | "chmem", 771 | "chmod", 772 | "chown", 773 | "chrt", 774 | "cksum", 775 | "clean-binary-files", 776 | "clear", 777 | "cmp", 778 | "cmsutil", 779 | "col", 780 | "colcrt", 781 | "colrm", 782 | "column", 783 | "comm", 784 | "command", 785 | "compare", 786 | "compgen", 787 | "complete", 788 | "compopt", 789 | "composite", 790 | "conjure", 791 | "continue", 792 | "convert", 793 | "coproc", 794 | "cp", 795 | "cpio", 796 | "create-jar-links", 797 | "crlutil", 798 | "csplit", 799 | "curl", 800 | "cut", 801 | "date", 802 | "db_archive", 803 | "db_checkpoint", 804 | "db_codegen", 805 | "db_deadlock", 806 | "db_dump", 807 | "db_dump185", 808 | "db_hotbackup", 809 | "db_load", 810 | "db_printlog", 811 | "db_recover", 812 | "db_stat", 813 | "db_upgrade", 814 | "db_verify", 815 | "dd", 816 | "declare", 817 | "df", 818 | "diff", 819 | "diff-jars", 820 | "diff3", 821 | "dir", 822 | "dircolors", 823 | "dirname", 824 | "dirs", 825 | "disown", 826 | "display", 827 | "dmesg", 828 | "do", 829 | "done", 830 | "du", 831 | "dwp", 832 | "easy_install", 833 | "easy_install-3.6", 834 | "echo", 835 | "egrep", 836 | "eject", 837 | "elfedit", 838 | "elif", 839 | "else", 840 | "enable", 841 | "env", 842 | "eqn", 843 | "esac", 844 | "eval", 845 | "exec", 846 | "exit", 847 | "expand", 848 | "export", 849 | "expr", 850 | "factor", 851 | "fallocate", 852 | "false", 853 | "fax2ps", 854 | "fax2tiff", 855 | "fc", 856 | "fc-cache", 857 | "fc-cat", 858 | "fc-list", 859 | "fc-match", 860 | "fc-query", 861 | "fc-scan", 862 | "fg", 863 | "fgrep", 864 | "fi", 865 | "file", 866 | "find", 867 | "find-jar", 868 | "find2perl", 869 | "findmnt", 870 | "flock", 871 | "fmt", 872 | "fold", 873 | "fonttosfnt", 874 | "for", 875 | "free", 876 | "function", 877 | "funzip", 878 | "gawk", 879 | "gdbus", 880 | "gencat", 881 | "geqn", 882 | "getconf", 883 | "getent", 884 | "getopt", 885 | "getopts", 886 | "gif2tiff", 887 | "gio-querymodules-64", 888 | "glib-compile-schemas", 889 | "gmake", 890 | "gneqn", 891 | "gnroff", 892 | "gpg", 893 | "gpg-agent", 894 | "gpg-connect-agent", 895 | "gpg-error", 896 | "gpg-zip", 897 | "gpg-zip2", 898 | "gpg2", 899 | "gpgconf", 900 | "gpgparsemail", 901 | "gpgsplit", 902 | "gpgsplit2", 903 | "gpgv", 904 | "gpgv2", 905 | "gpic", 906 | "gprof", 907 | "grep", 908 | "groff", 909 | "grops", 910 | "grotty", 911 | "groups", 912 | "gsettings", 913 | "gsoelim", 914 | "gtar", 915 | "gtbl", 916 | "gtroff", 917 | "gunzip", 918 | "gzexe", 919 | "gzip", 920 | "h2ph", 921 | "hash", 922 | "head", 923 | "help", 924 | "hexdump", 925 | "history", 926 | "hostid", 927 | "i386", 928 | "iconv", 929 | "id", 930 | "identify", 931 | "if", 932 | "igawk", 933 | "import", 934 | "in", 935 | "info", 936 | "infocmp", 937 | "infokey", 938 | "infotocap", 939 | "install", 940 | "ionice", 941 | "ipcmk", 942 | "ipcrm", 943 | "ipcs", 944 | "isosize", 945 | "java", 946 | "java8", 947 | "jjs", 948 | "jjs8", 949 | "jobs", 950 | "join", 951 | "jvmjar", 952 | "keytool", 953 | "keytool8", 954 | "kill", 955 | "killall", 956 | "kmod", 957 | "lastlog", 958 | "lchfn", 959 | "lchsh", 960 | "ld", 961 | "ld.bfd", 962 | "ld.gold", 963 | "ldd", 964 | "let", 965 | "link", 966 | "linux32", 967 | "linux64", 968 | "ln", 969 | "local", 970 | "locale", 971 | "localedef", 972 | "logger", 973 | "login", 974 | "logname", 975 | "logout", 976 | "look", 977 | "ls", 978 | "lsblk", 979 | "lscpu", 980 | "lsipc", 981 | "lslocks", 982 | "lslogins", 983 | "lsmem", 984 | "lsns", 985 | "lua", 986 | "luac", 987 | "make", 988 | "makedb", 989 | "mapfile", 990 | "mcookie", 991 | "md5sum", 992 | "mkdir", 993 | "mkfifo", 994 | "mkfontdir", 995 | "mkfontscale", 996 | "mknod", 997 | "mktemp", 998 | "modutil", 999 | "mogrify", 1000 | "montage", 1001 | "more", 1002 | "mountpoint", 1003 | "mv", 1004 | "namei", 1005 | "neqn", 1006 | "nice", 1007 | "nl", 1008 | "nm", 1009 | "nohup", 1010 | "nproc", 1011 | "nroff", 1012 | "nsenter", 1013 | "nss-policy-check", 1014 | "numfmt", 1015 | "objcopy", 1016 | "objdump", 1017 | "od", 1018 | "oldfind", 1019 | "openssl", 1020 | "orbd", 1021 | "orbd8", 1022 | "p11-kit", 1023 | "pack200", 1024 | "pack2008", 1025 | "pal2rgb", 1026 | "paste", 1027 | "patch", 1028 | "pathchk", 1029 | "peekfd", 1030 | "perl", 1031 | "perl5.16.3", 1032 | "perlbug", 1033 | "perldoc", 1034 | "perlthanks", 1035 | "pgawk", 1036 | "pgrep", 1037 | "pic", 1038 | "piconv", 1039 | "pinentry", 1040 | "pinentry-curses", 1041 | "pinky", 1042 | "pip", 1043 | "pip-3.6", 1044 | "pip3", 1045 | "pip3.6", 1046 | "pk12util", 1047 | "pkg-config", 1048 | "pkill", 1049 | "pl2pm", 1050 | "pldd", 1051 | "pmap", 1052 | "pod2html", 1053 | "pod2man", 1054 | "pod2text", 1055 | "pod2usage", 1056 | "policytool", 1057 | "policytool8", 1058 | "popd", 1059 | "post-grohtml", 1060 | "ppm2tiff", 1061 | "pr", 1062 | "pre-grohtml", 1063 | "preconv", 1064 | "printenv", 1065 | "printf", 1066 | "prlimit", 1067 | "prtstat", 1068 | "ps", 1069 | "psed", 1070 | "pstree", 1071 | "pstree.x11", 1072 | "pstruct", 1073 | "ptx", 1074 | "pushd", 1075 | "pwd", 1076 | "pwdx", 1077 | "pwmake", 1078 | "pwscore", 1079 | "pydoc", 1080 | "pydoc2.7", 1081 | "pydoc27", 1082 | "pydoc3", 1083 | "pydoc3.6", 1084 | "python", 1085 | "python-config", 1086 | "python2.7", 1087 | "python27", 1088 | "python3", 1089 | "python3-config", 1090 | "python3.6", 1091 | "python3.6-config", 1092 | "python3.6m", 1093 | "python3.6m-config", 1094 | "python36", 1095 | "pyvenv", 1096 | "pyvenv-3.6", 1097 | "pyvenv3", 1098 | "pyvenv3.6", 1099 | "ranlib", 1100 | "ras2tiff", 1101 | "raw", 1102 | "raw2tiff", 1103 | "read", 1104 | "readarray", 1105 | "readelf", 1106 | "readlink", 1107 | "readonly", 1108 | "realpath", 1109 | "rebuild-jar-repository", 1110 | "rebuild-security-providers", 1111 | "rename", 1112 | "renice", 1113 | "reset", 1114 | "return", 1115 | "rev", 1116 | "rgb2ycbcr", 1117 | "rm", 1118 | "rmdir", 1119 | "rmid", 1120 | "rmid8", 1121 | "rmiregistry", 1122 | "rmiregistry8", 1123 | "rpcgen", 1124 | "rpm", 1125 | "rpm2cpio", 1126 | "rpmdb", 1127 | "rpmkeys", 1128 | "rpmquery", 1129 | "rpmverify", 1130 | "runcon", 1131 | "s2p", 1132 | "script", 1133 | "scriptreplay", 1134 | "sctp_darn", 1135 | "sctp_status", 1136 | "sctp_test", 1137 | "sdiff", 1138 | "sed", 1139 | "select", 1140 | "seq", 1141 | "servertool", 1142 | "servertool8", 1143 | "set", 1144 | "setarch", 1145 | "setpriv", 1146 | "setsid", 1147 | "setterm", 1148 | "setup-nsssysinit", 1149 | "setup-nsssysinit.sh", 1150 | "sh", 1151 | "sha1sum", 1152 | "sha224sum", 1153 | "sha256sum", 1154 | "sha384sum", 1155 | "sha512sum", 1156 | "shift", 1157 | "shopt", 1158 | "shred", 1159 | "shuf", 1160 | "signver", 1161 | "size", 1162 | "skill", 1163 | "slabtop", 1164 | "sleep", 1165 | "snice", 1166 | "soelim", 1167 | "sort", 1168 | "sotruss", 1169 | "source", 1170 | "splain", 1171 | "split", 1172 | "sprof", 1173 | "sqlite3", 1174 | "ssltap", 1175 | "stat", 1176 | "stdbuf", 1177 | "stream", 1178 | "strings", 1179 | "strip", 1180 | "stty", 1181 | "sum", 1182 | "suspend", 1183 | "sync", 1184 | "tabs", 1185 | "tac", 1186 | "tail", 1187 | "tailf", 1188 | "tar", 1189 | "taskset", 1190 | "tbl", 1191 | "tee", 1192 | "test", 1193 | "then", 1194 | "thumbnail", 1195 | "tic", 1196 | "tiff2bw", 1197 | "tiff2pdf", 1198 | "tiff2ps", 1199 | "tiff2rgba", 1200 | "tiffcmp", 1201 | "tiffcp", 1202 | "tiffcrop", 1203 | "tiffdither", 1204 | "tiffdump", 1205 | "tiffinfo", 1206 | "tiffmedian", 1207 | "tiffset", 1208 | "tiffsplit", 1209 | "time", 1210 | "timeout", 1211 | "times", 1212 | "tload", 1213 | "tnameserv", 1214 | "tnameserv8", 1215 | "toe", 1216 | "top", 1217 | "touch", 1218 | "tput", 1219 | "tr", 1220 | "trap", 1221 | "troff", 1222 | "true", 1223 | "truncate", 1224 | "tset", 1225 | "tsort", 1226 | "ttmkfdir", 1227 | "tty", 1228 | "type", 1229 | "typeset", 1230 | "tzselect", 1231 | "ucs2any", 1232 | "ul", 1233 | "ulimit", 1234 | "umask", 1235 | "unalias", 1236 | "uname", 1237 | "unexpand", 1238 | "uniq", 1239 | "unlink", 1240 | "unpack200", 1241 | "unpack2008", 1242 | "unset", 1243 | "unshare", 1244 | "until", 1245 | "unxz", 1246 | "unzip", 1247 | "unzipsfx", 1248 | "update-ca-trust", 1249 | "update-mime-database", 1250 | "uptime", 1251 | "urlgrabber", 1252 | "urlgrabber-2.7", 1253 | "users", 1254 | "utmpdump", 1255 | "uuidgen", 1256 | "vdir", 1257 | "vmstat", 1258 | "w", 1259 | "wait", 1260 | "watch", 1261 | "watchgnupg", 1262 | "wc", 1263 | "wdctl", 1264 | "whereis", 1265 | "which", 1266 | "while", 1267 | "who", 1268 | "whoami", 1269 | "withsctp", 1270 | "x86_64", 1271 | "xargs", 1272 | "xmlcatalog", 1273 | "xmllint", 1274 | "xmlwf", 1275 | "xsltproc", 1276 | "xz", 1277 | "xzcat", 1278 | "xzcmp", 1279 | "xzdec", 1280 | "xzdiff", 1281 | "xzegrep", 1282 | "xzfgrep", 1283 | "xzgrep", 1284 | "xzless", 1285 | "xzmore", 1286 | "yes", 1287 | "yum", 1288 | "zcat", 1289 | "zcmp", 1290 | "zdiff", 1291 | "zegrep", 1292 | "zfgrep", 1293 | "zforce", 1294 | "zgrep", 1295 | "zipgrep", 1296 | "zipinfo", 1297 | "zless", 1298 | "zmore", 1299 | "znew", 1300 | "zsoelim", 1301 | "{", 1302 | "}" 1303 | ], 1304 | "versions": false 1305 | }, 1306 | "python3.7": { 1307 | "cmds": [ 1308 | "!", 1309 | ".", 1310 | ":", 1311 | "[", 1312 | "[[", 1313 | "]]", 1314 | "a2p", 1315 | "addr2line", 1316 | "alias", 1317 | "animate", 1318 | "ar", 1319 | "arch", 1320 | "as", 1321 | "aserver", 1322 | "awk", 1323 | "base64", 1324 | "basename", 1325 | "bash", 1326 | "bashbug", 1327 | "bashbug-64", 1328 | "bdftopcf", 1329 | "berkeley_db_svc", 1330 | "bg", 1331 | "bind", 1332 | "bmp2tiff", 1333 | "break", 1334 | "build-classpath", 1335 | "build-classpath-directory", 1336 | "build-jar-repository", 1337 | "builtin", 1338 | "bunzip2", 1339 | "bzcat", 1340 | "bzcmp", 1341 | "bzdiff", 1342 | "bzgrep", 1343 | "bzip2", 1344 | "bzip2recover", 1345 | "bzless", 1346 | "bzmore", 1347 | "c++filt", 1348 | "c2ph", 1349 | "ca-legacy", 1350 | "cairo-sphinx", 1351 | "cal", 1352 | "caller", 1353 | "captoinfo", 1354 | "case", 1355 | "cat", 1356 | "catchsegv", 1357 | "cd", 1358 | "certutil", 1359 | "chcon", 1360 | "check-binary-files", 1361 | "checksctp", 1362 | "chgrp", 1363 | "chmem", 1364 | "chmod", 1365 | "chown", 1366 | "chrt", 1367 | "cksum", 1368 | "clean-binary-files", 1369 | "clear", 1370 | "cmp", 1371 | "cmsutil", 1372 | "col", 1373 | "colcrt", 1374 | "colrm", 1375 | "column", 1376 | "comm", 1377 | "command", 1378 | "compare", 1379 | "compgen", 1380 | "complete", 1381 | "compopt", 1382 | "composite", 1383 | "conjure", 1384 | "continue", 1385 | "convert", 1386 | "coproc", 1387 | "cp", 1388 | "cpio", 1389 | "create-jar-links", 1390 | "crlutil", 1391 | "csplit", 1392 | "curl", 1393 | "cut", 1394 | "date", 1395 | "db_archive", 1396 | "db_checkpoint", 1397 | "db_codegen", 1398 | "db_deadlock", 1399 | "db_dump", 1400 | "db_dump185", 1401 | "db_hotbackup", 1402 | "db_load", 1403 | "db_printlog", 1404 | "db_recover", 1405 | "db_stat", 1406 | "db_upgrade", 1407 | "db_verify", 1408 | "dd", 1409 | "declare", 1410 | "df", 1411 | "diff", 1412 | "diff-jars", 1413 | "diff3", 1414 | "dir", 1415 | "dircolors", 1416 | "dirname", 1417 | "dirs", 1418 | "disown", 1419 | "display", 1420 | "dmesg", 1421 | "do", 1422 | "done", 1423 | "du", 1424 | "dwp", 1425 | "easy_install", 1426 | "easy_install-3.6", 1427 | "easy_install-3.7", 1428 | "echo", 1429 | "egrep", 1430 | "eject", 1431 | "elfedit", 1432 | "elif", 1433 | "else", 1434 | "enable", 1435 | "env", 1436 | "eqn", 1437 | "esac", 1438 | "eval", 1439 | "exec", 1440 | "exit", 1441 | "expand", 1442 | "export", 1443 | "expr", 1444 | "factor", 1445 | "fallocate", 1446 | "false", 1447 | "fax2ps", 1448 | "fax2tiff", 1449 | "fc", 1450 | "fc-cache", 1451 | "fc-cat", 1452 | "fc-list", 1453 | "fc-match", 1454 | "fc-query", 1455 | "fc-scan", 1456 | "fg", 1457 | "fgrep", 1458 | "fi", 1459 | "file", 1460 | "find", 1461 | "find-jar", 1462 | "find2perl", 1463 | "findmnt", 1464 | "flock", 1465 | "fmt", 1466 | "fold", 1467 | "fonttosfnt", 1468 | "for", 1469 | "free", 1470 | "function", 1471 | "funzip", 1472 | "gawk", 1473 | "gdbus", 1474 | "gencat", 1475 | "geqn", 1476 | "getconf", 1477 | "getent", 1478 | "getopt", 1479 | "getopts", 1480 | "gif2tiff", 1481 | "gio-querymodules-64", 1482 | "glib-compile-schemas", 1483 | "gmake", 1484 | "gneqn", 1485 | "gnroff", 1486 | "gpg", 1487 | "gpg-agent", 1488 | "gpg-connect-agent", 1489 | "gpg-error", 1490 | "gpg-zip", 1491 | "gpg-zip2", 1492 | "gpg2", 1493 | "gpgconf", 1494 | "gpgparsemail", 1495 | "gpgsplit", 1496 | "gpgsplit2", 1497 | "gpgv", 1498 | "gpgv2", 1499 | "gpic", 1500 | "gprof", 1501 | "grep", 1502 | "groff", 1503 | "grops", 1504 | "grotty", 1505 | "groups", 1506 | "gsettings", 1507 | "gsoelim", 1508 | "gtar", 1509 | "gtbl", 1510 | "gtroff", 1511 | "gunzip", 1512 | "gzexe", 1513 | "gzip", 1514 | "h2ph", 1515 | "hash", 1516 | "head", 1517 | "help", 1518 | "hexdump", 1519 | "history", 1520 | "hostid", 1521 | "i386", 1522 | "iconv", 1523 | "id", 1524 | "identify", 1525 | "if", 1526 | "igawk", 1527 | "import", 1528 | "in", 1529 | "info", 1530 | "infocmp", 1531 | "infokey", 1532 | "infotocap", 1533 | "install", 1534 | "ionice", 1535 | "ipcmk", 1536 | "ipcrm", 1537 | "ipcs", 1538 | "isosize", 1539 | "java", 1540 | "java8", 1541 | "jjs", 1542 | "jjs8", 1543 | "jobs", 1544 | "join", 1545 | "jvmjar", 1546 | "keytool", 1547 | "keytool8", 1548 | "kill", 1549 | "killall", 1550 | "kmod", 1551 | "lastlog", 1552 | "lchfn", 1553 | "lchsh", 1554 | "ld", 1555 | "ld.bfd", 1556 | "ld.gold", 1557 | "ldd", 1558 | "let", 1559 | "link", 1560 | "linux32", 1561 | "linux64", 1562 | "ln", 1563 | "local", 1564 | "locale", 1565 | "localedef", 1566 | "logger", 1567 | "login", 1568 | "logname", 1569 | "logout", 1570 | "look", 1571 | "ls", 1572 | "lsblk", 1573 | "lscpu", 1574 | "lsipc", 1575 | "lslocks", 1576 | "lslogins", 1577 | "lsmem", 1578 | "lsns", 1579 | "lua", 1580 | "luac", 1581 | "make", 1582 | "makedb", 1583 | "mapfile", 1584 | "mcookie", 1585 | "md5sum", 1586 | "mkdir", 1587 | "mkfifo", 1588 | "mkfontdir", 1589 | "mkfontscale", 1590 | "mknod", 1591 | "mktemp", 1592 | "modutil", 1593 | "mogrify", 1594 | "montage", 1595 | "more", 1596 | "mountpoint", 1597 | "mv", 1598 | "namei", 1599 | "neqn", 1600 | "nice", 1601 | "nl", 1602 | "nm", 1603 | "nohup", 1604 | "nproc", 1605 | "nroff", 1606 | "nsenter", 1607 | "nss-policy-check", 1608 | "numfmt", 1609 | "objcopy", 1610 | "objdump", 1611 | "od", 1612 | "oldfind", 1613 | "openssl", 1614 | "orbd", 1615 | "orbd8", 1616 | "p11-kit", 1617 | "pack200", 1618 | "pack2008", 1619 | "pal2rgb", 1620 | "paste", 1621 | "patch", 1622 | "pathchk", 1623 | "peekfd", 1624 | "perl", 1625 | "perl5.16.3", 1626 | "perlbug", 1627 | "perldoc", 1628 | "perlthanks", 1629 | "pgawk", 1630 | "pgrep", 1631 | "pic", 1632 | "piconv", 1633 | "pinentry", 1634 | "pinentry-curses", 1635 | "pinky", 1636 | "pip", 1637 | "pip-3.6", 1638 | "pip3", 1639 | "pip3.7", 1640 | "pk12util", 1641 | "pkg-config", 1642 | "pkill", 1643 | "pl2pm", 1644 | "pldd", 1645 | "pmap", 1646 | "pod2html", 1647 | "pod2man", 1648 | "pod2text", 1649 | "pod2usage", 1650 | "policytool", 1651 | "policytool8", 1652 | "popd", 1653 | "post-grohtml", 1654 | "ppm2tiff", 1655 | "pr", 1656 | "pre-grohtml", 1657 | "preconv", 1658 | "printenv", 1659 | "printf", 1660 | "prlimit", 1661 | "prtstat", 1662 | "ps", 1663 | "psed", 1664 | "pstree", 1665 | "pstree.x11", 1666 | "pstruct", 1667 | "ptx", 1668 | "pushd", 1669 | "pwd", 1670 | "pwdx", 1671 | "pwmake", 1672 | "pwscore", 1673 | "pydoc", 1674 | "pydoc2.7", 1675 | "pydoc27", 1676 | "pydoc3", 1677 | "pydoc3.6", 1678 | "pydoc3.7", 1679 | "python", 1680 | "python-config", 1681 | "python2.7", 1682 | "python27", 1683 | "python3", 1684 | "python3-config", 1685 | "python3.6", 1686 | "python3.6m", 1687 | "python3.7", 1688 | "python3.7-config", 1689 | "python3.7m", 1690 | "python3.7m-config", 1691 | "python36", 1692 | "pyvenv", 1693 | "pyvenv-3.7", 1694 | "pyvenv3", 1695 | "pyvenv3.6", 1696 | "ranlib", 1697 | "ras2tiff", 1698 | "raw", 1699 | "raw2tiff", 1700 | "read", 1701 | "readarray", 1702 | "readelf", 1703 | "readlink", 1704 | "readonly", 1705 | "realpath", 1706 | "rebuild-jar-repository", 1707 | "rebuild-security-providers", 1708 | "rename", 1709 | "renice", 1710 | "reset", 1711 | "return", 1712 | "rev", 1713 | "rgb2ycbcr", 1714 | "rm", 1715 | "rmdir", 1716 | "rmid", 1717 | "rmid8", 1718 | "rmiregistry", 1719 | "rmiregistry8", 1720 | "rpcgen", 1721 | "rpm", 1722 | "rpm2cpio", 1723 | "rpmdb", 1724 | "rpmkeys", 1725 | "rpmquery", 1726 | "rpmverify", 1727 | "runcon", 1728 | "s2p", 1729 | "script", 1730 | "scriptreplay", 1731 | "sctp_darn", 1732 | "sctp_status", 1733 | "sctp_test", 1734 | "sdiff", 1735 | "sed", 1736 | "select", 1737 | "seq", 1738 | "servertool", 1739 | "servertool8", 1740 | "set", 1741 | "setarch", 1742 | "setpriv", 1743 | "setsid", 1744 | "setterm", 1745 | "setup-nsssysinit", 1746 | "setup-nsssysinit.sh", 1747 | "sh", 1748 | "sha1sum", 1749 | "sha224sum", 1750 | "sha256sum", 1751 | "sha384sum", 1752 | "sha512sum", 1753 | "shift", 1754 | "shopt", 1755 | "shred", 1756 | "shuf", 1757 | "signver", 1758 | "size", 1759 | "skill", 1760 | "slabtop", 1761 | "sleep", 1762 | "snice", 1763 | "soelim", 1764 | "sort", 1765 | "sotruss", 1766 | "source", 1767 | "splain", 1768 | "split", 1769 | "sprof", 1770 | "sqlite3", 1771 | "ssltap", 1772 | "stat", 1773 | "stdbuf", 1774 | "stream", 1775 | "strings", 1776 | "strip", 1777 | "stty", 1778 | "sum", 1779 | "suspend", 1780 | "sync", 1781 | "tabs", 1782 | "tac", 1783 | "tail", 1784 | "tailf", 1785 | "tar", 1786 | "taskset", 1787 | "tbl", 1788 | "tee", 1789 | "test", 1790 | "then", 1791 | "thumbnail", 1792 | "tic", 1793 | "tiff2bw", 1794 | "tiff2pdf", 1795 | "tiff2ps", 1796 | "tiff2rgba", 1797 | "tiffcmp", 1798 | "tiffcp", 1799 | "tiffcrop", 1800 | "tiffdither", 1801 | "tiffdump", 1802 | "tiffinfo", 1803 | "tiffmedian", 1804 | "tiffset", 1805 | "tiffsplit", 1806 | "time", 1807 | "timeout", 1808 | "times", 1809 | "tload", 1810 | "tnameserv", 1811 | "tnameserv8", 1812 | "toe", 1813 | "top", 1814 | "touch", 1815 | "tput", 1816 | "tr", 1817 | "trap", 1818 | "troff", 1819 | "true", 1820 | "truncate", 1821 | "tset", 1822 | "tsort", 1823 | "ttmkfdir", 1824 | "tty", 1825 | "type", 1826 | "typeset", 1827 | "tzselect", 1828 | "ucs2any", 1829 | "ul", 1830 | "ulimit", 1831 | "umask", 1832 | "unalias", 1833 | "uname", 1834 | "unexpand", 1835 | "uniq", 1836 | "unlink", 1837 | "unpack200", 1838 | "unpack2008", 1839 | "unset", 1840 | "unshare", 1841 | "until", 1842 | "unxz", 1843 | "unzip", 1844 | "unzipsfx", 1845 | "update-ca-trust", 1846 | "update-mime-database", 1847 | "uptime", 1848 | "urlgrabber", 1849 | "urlgrabber-2.7", 1850 | "users", 1851 | "utmpdump", 1852 | "uuidgen", 1853 | "vdir", 1854 | "vmstat", 1855 | "w", 1856 | "wait", 1857 | "watch", 1858 | "watchgnupg", 1859 | "wc", 1860 | "wdctl", 1861 | "whereis", 1862 | "which", 1863 | "while", 1864 | "who", 1865 | "whoami", 1866 | "withsctp", 1867 | "x86_64", 1868 | "xargs", 1869 | "xmlcatalog", 1870 | "xmllint", 1871 | "xmlwf", 1872 | "xsltproc", 1873 | "xz", 1874 | "xzcat", 1875 | "xzcmp", 1876 | "xzdec", 1877 | "xzdiff", 1878 | "xzegrep", 1879 | "xzfgrep", 1880 | "xzgrep", 1881 | "xzless", 1882 | "xzmore", 1883 | "yes", 1884 | "yum", 1885 | "zcat", 1886 | "zcmp", 1887 | "zdiff", 1888 | "zegrep", 1889 | "zfgrep", 1890 | "zforce", 1891 | "zgrep", 1892 | "zipgrep", 1893 | "zipinfo", 1894 | "zless", 1895 | "zmore", 1896 | "znew", 1897 | "zsoelim", 1898 | "{", 1899 | "}" 1900 | ], 1901 | "versions": false 1902 | }, 1903 | "python3.8": { 1904 | "cmds": [ 1905 | "!", 1906 | ".", 1907 | ":", 1908 | "[", 1909 | "[[", 1910 | "]]", 1911 | "alias", 1912 | "arch", 1913 | "awk", 1914 | "base64", 1915 | "basename", 1916 | "bash", 1917 | "bashbug", 1918 | "bashbug-64", 1919 | "bg", 1920 | "bind", 1921 | "break", 1922 | "builtin", 1923 | "ca-legacy", 1924 | "caller", 1925 | "captoinfo", 1926 | "case", 1927 | "cat", 1928 | "catchsegv", 1929 | "cd", 1930 | "chcon", 1931 | "chgrp", 1932 | "chmod", 1933 | "chown", 1934 | "cksum", 1935 | "clear", 1936 | "comm", 1937 | "command", 1938 | "compgen", 1939 | "complete", 1940 | "compopt", 1941 | "continue", 1942 | "coproc", 1943 | "cp", 1944 | "csplit", 1945 | "cut", 1946 | "date", 1947 | "dd", 1948 | "declare", 1949 | "df", 1950 | "dgawk", 1951 | "dir", 1952 | "dircolors", 1953 | "dirname", 1954 | "dirs", 1955 | "disown", 1956 | "do", 1957 | "done", 1958 | "du", 1959 | "echo", 1960 | "egrep", 1961 | "elif", 1962 | "else", 1963 | "enable", 1964 | "env", 1965 | "esac", 1966 | "eval", 1967 | "exec", 1968 | "exit", 1969 | "expand", 1970 | "export", 1971 | "expr", 1972 | "factor", 1973 | "false", 1974 | "fc", 1975 | "fg", 1976 | "fgrep", 1977 | "fi", 1978 | "fmt", 1979 | "fold", 1980 | "for", 1981 | "function", 1982 | "gawk", 1983 | "gencat", 1984 | "getconf", 1985 | "getent", 1986 | "getopts", 1987 | "grep", 1988 | "groups", 1989 | "hash", 1990 | "head", 1991 | "help", 1992 | "history", 1993 | "hostid", 1994 | "iconv", 1995 | "id", 1996 | "if", 1997 | "igawk", 1998 | "in", 1999 | "info", 2000 | "infocmp", 2001 | "infokey", 2002 | "infotocap", 2003 | "install", 2004 | "jobs", 2005 | "join", 2006 | "kill", 2007 | "ldd", 2008 | "let", 2009 | "link", 2010 | "ln", 2011 | "local", 2012 | "locale", 2013 | "localedef", 2014 | "logname", 2015 | "logout", 2016 | "ls", 2017 | "makedb", 2018 | "mapfile", 2019 | "md5sum", 2020 | "mkdir", 2021 | "mkfifo", 2022 | "mknod", 2023 | "mktemp", 2024 | "mv", 2025 | "nice", 2026 | "nl", 2027 | "nohup", 2028 | "nproc", 2029 | "numfmt", 2030 | "od", 2031 | "p11-kit", 2032 | "paste", 2033 | "pathchk", 2034 | "pgawk", 2035 | "pinky", 2036 | "pip", 2037 | "pip3", 2038 | "pip3.8", 2039 | "pldd", 2040 | "popd", 2041 | "pr", 2042 | "printenv", 2043 | "printf", 2044 | "ptx", 2045 | "pushd", 2046 | "pwd", 2047 | "pydoc", 2048 | "pydoc3", 2049 | "pydoc3.8", 2050 | "python", 2051 | "python-config", 2052 | "python3", 2053 | "python3-config", 2054 | "python3.8", 2055 | "python3.8-config", 2056 | "read", 2057 | "readarray", 2058 | "readlink", 2059 | "readonly", 2060 | "realpath", 2061 | "reset", 2062 | "return", 2063 | "rm", 2064 | "rmdir", 2065 | "rpcgen", 2066 | "runcon", 2067 | "sed", 2068 | "select", 2069 | "seq", 2070 | "set", 2071 | "sh", 2072 | "sha1sum", 2073 | "sha224sum", 2074 | "sha256sum", 2075 | "sha384sum", 2076 | "sha512sum", 2077 | "shift", 2078 | "shopt", 2079 | "shred", 2080 | "shuf", 2081 | "sleep", 2082 | "sort", 2083 | "sotruss", 2084 | "source", 2085 | "split", 2086 | "sprof", 2087 | "stat", 2088 | "stdbuf", 2089 | "stty", 2090 | "sum", 2091 | "suspend", 2092 | "sync", 2093 | "tabs", 2094 | "tac", 2095 | "tail", 2096 | "tee", 2097 | "test", 2098 | "then", 2099 | "tic", 2100 | "time", 2101 | "timeout", 2102 | "times", 2103 | "toe", 2104 | "touch", 2105 | "tput", 2106 | "tr", 2107 | "trap", 2108 | "true", 2109 | "truncate", 2110 | "trust", 2111 | "tset", 2112 | "tsort", 2113 | "tty", 2114 | "type", 2115 | "typeset", 2116 | "tzselect", 2117 | "ulimit", 2118 | "umask", 2119 | "unalias", 2120 | "uname", 2121 | "unexpand", 2122 | "uniq", 2123 | "unlink", 2124 | "unset", 2125 | "until", 2126 | "update-ca-trust", 2127 | "users", 2128 | "vdir", 2129 | "wait", 2130 | "wc", 2131 | "while", 2132 | "who", 2133 | "whoami", 2134 | "yes", 2135 | "{", 2136 | "}" 2137 | ], 2138 | "versions": false 2139 | }, 2140 | "ruby2.5": { 2141 | "cmds": [ 2142 | "!", 2143 | ".", 2144 | ":", 2145 | "[", 2146 | "[[", 2147 | "]]", 2148 | "a2p", 2149 | "addr2line", 2150 | "alias", 2151 | "animate", 2152 | "ar", 2153 | "arch", 2154 | "as", 2155 | "aserver", 2156 | "awk", 2157 | "base64", 2158 | "basename", 2159 | "bash", 2160 | "bashbug", 2161 | "bashbug-64", 2162 | "bdftopcf", 2163 | "berkeley_db_svc", 2164 | "bg", 2165 | "bind", 2166 | "bmp2tiff", 2167 | "break", 2168 | "build-classpath", 2169 | "build-classpath-directory", 2170 | "build-jar-repository", 2171 | "builtin", 2172 | "bundle", 2173 | "bundler", 2174 | "bunzip2", 2175 | "bzcat", 2176 | "bzcmp", 2177 | "bzdiff", 2178 | "bzgrep", 2179 | "bzip2", 2180 | "bzip2recover", 2181 | "bzless", 2182 | "bzmore", 2183 | "c++filt", 2184 | "c2ph", 2185 | "ca-legacy", 2186 | "cairo-sphinx", 2187 | "cal", 2188 | "caller", 2189 | "captoinfo", 2190 | "case", 2191 | "cat", 2192 | "catchsegv", 2193 | "cd", 2194 | "certutil", 2195 | "chcon", 2196 | "check-binary-files", 2197 | "checksctp", 2198 | "chgrp", 2199 | "chmem", 2200 | "chmod", 2201 | "chown", 2202 | "chrt", 2203 | "cksum", 2204 | "clean-binary-files", 2205 | "clear", 2206 | "cmp", 2207 | "cmsutil", 2208 | "col", 2209 | "colcrt", 2210 | "colrm", 2211 | "column", 2212 | "comm", 2213 | "command", 2214 | "compare", 2215 | "compgen", 2216 | "complete", 2217 | "compopt", 2218 | "composite", 2219 | "conjure", 2220 | "continue", 2221 | "convert", 2222 | "coproc", 2223 | "cp", 2224 | "cpio", 2225 | "create-jar-links", 2226 | "crlutil", 2227 | "csplit", 2228 | "curl", 2229 | "cut", 2230 | "date", 2231 | "db_archive", 2232 | "db_checkpoint", 2233 | "db_codegen", 2234 | "db_deadlock", 2235 | "db_dump", 2236 | "db_dump185", 2237 | "db_hotbackup", 2238 | "db_load", 2239 | "db_printlog", 2240 | "db_recover", 2241 | "db_stat", 2242 | "db_upgrade", 2243 | "db_verify", 2244 | "dd", 2245 | "declare", 2246 | "df", 2247 | "diff", 2248 | "diff-jars", 2249 | "diff3", 2250 | "dir", 2251 | "dircolors", 2252 | "dirname", 2253 | "dirs", 2254 | "disown", 2255 | "display", 2256 | "dmesg", 2257 | "do", 2258 | "done", 2259 | "du", 2260 | "dwp", 2261 | "easy_install-3.6", 2262 | "echo", 2263 | "egrep", 2264 | "eject", 2265 | "elfedit", 2266 | "elif", 2267 | "else", 2268 | "enable", 2269 | "env", 2270 | "eqn", 2271 | "erb", 2272 | "esac", 2273 | "eval", 2274 | "exec", 2275 | "exit", 2276 | "expand", 2277 | "export", 2278 | "expr", 2279 | "factor", 2280 | "fallocate", 2281 | "false", 2282 | "fax2ps", 2283 | "fax2tiff", 2284 | "fc", 2285 | "fc-cache", 2286 | "fc-cat", 2287 | "fc-list", 2288 | "fc-match", 2289 | "fc-query", 2290 | "fc-scan", 2291 | "fg", 2292 | "fgrep", 2293 | "fi", 2294 | "file", 2295 | "find", 2296 | "find-jar", 2297 | "find2perl", 2298 | "findmnt", 2299 | "flock", 2300 | "fmt", 2301 | "fold", 2302 | "fonttosfnt", 2303 | "for", 2304 | "free", 2305 | "function", 2306 | "funzip", 2307 | "gawk", 2308 | "gdbus", 2309 | "gem", 2310 | "gencat", 2311 | "geqn", 2312 | "getconf", 2313 | "getent", 2314 | "getopt", 2315 | "getopts", 2316 | "gif2tiff", 2317 | "gio-querymodules-64", 2318 | "glib-compile-schemas", 2319 | "gmake", 2320 | "gneqn", 2321 | "gnroff", 2322 | "gpg", 2323 | "gpg-agent", 2324 | "gpg-connect-agent", 2325 | "gpg-error", 2326 | "gpg-zip", 2327 | "gpg-zip2", 2328 | "gpg2", 2329 | "gpgconf", 2330 | "gpgparsemail", 2331 | "gpgsplit", 2332 | "gpgsplit2", 2333 | "gpgv", 2334 | "gpgv2", 2335 | "gpic", 2336 | "gprof", 2337 | "grep", 2338 | "groff", 2339 | "grops", 2340 | "grotty", 2341 | "groups", 2342 | "gsettings", 2343 | "gsoelim", 2344 | "gtar", 2345 | "gtbl", 2346 | "gtroff", 2347 | "gunzip", 2348 | "gzexe", 2349 | "gzip", 2350 | "h2ph", 2351 | "hash", 2352 | "head", 2353 | "help", 2354 | "hexdump", 2355 | "history", 2356 | "hostid", 2357 | "i386", 2358 | "iconv", 2359 | "id", 2360 | "identify", 2361 | "if", 2362 | "igawk", 2363 | "import", 2364 | "in", 2365 | "info", 2366 | "infocmp", 2367 | "infokey", 2368 | "infotocap", 2369 | "install", 2370 | "ionice", 2371 | "ipcmk", 2372 | "ipcrm", 2373 | "ipcs", 2374 | "irb", 2375 | "isosize", 2376 | "java", 2377 | "java8", 2378 | "jjs", 2379 | "jjs8", 2380 | "jobs", 2381 | "join", 2382 | "jvmjar", 2383 | "keytool", 2384 | "keytool8", 2385 | "kill", 2386 | "killall", 2387 | "kmod", 2388 | "lastlog", 2389 | "lchfn", 2390 | "lchsh", 2391 | "ld", 2392 | "ld.bfd", 2393 | "ld.gold", 2394 | "ldd", 2395 | "let", 2396 | "link", 2397 | "linux32", 2398 | "linux64", 2399 | "ln", 2400 | "local", 2401 | "locale", 2402 | "localedef", 2403 | "logger", 2404 | "login", 2405 | "logname", 2406 | "logout", 2407 | "look", 2408 | "ls", 2409 | "lsblk", 2410 | "lscpu", 2411 | "lsipc", 2412 | "lslocks", 2413 | "lslogins", 2414 | "lsmem", 2415 | "lsns", 2416 | "lua", 2417 | "luac", 2418 | "make", 2419 | "makedb", 2420 | "mapfile", 2421 | "mcookie", 2422 | "md5sum", 2423 | "mkdir", 2424 | "mkfifo", 2425 | "mkfontdir", 2426 | "mkfontscale", 2427 | "mknod", 2428 | "mktemp", 2429 | "modutil", 2430 | "mogrify", 2431 | "montage", 2432 | "more", 2433 | "mountpoint", 2434 | "mv", 2435 | "namei", 2436 | "neqn", 2437 | "nice", 2438 | "nl", 2439 | "nm", 2440 | "nohup", 2441 | "nproc", 2442 | "nroff", 2443 | "nsenter", 2444 | "nss-policy-check", 2445 | "numfmt", 2446 | "objcopy", 2447 | "objdump", 2448 | "od", 2449 | "oldfind", 2450 | "openssl", 2451 | "orbd", 2452 | "orbd8", 2453 | "p11-kit", 2454 | "pack200", 2455 | "pack2008", 2456 | "pal2rgb", 2457 | "paste", 2458 | "patch", 2459 | "pathchk", 2460 | "peekfd", 2461 | "perl", 2462 | "perl5.16.3", 2463 | "perlbug", 2464 | "perldoc", 2465 | "perlthanks", 2466 | "pgawk", 2467 | "pgrep", 2468 | "pic", 2469 | "piconv", 2470 | "pinentry", 2471 | "pinentry-curses", 2472 | "pinky", 2473 | "pip-3.6", 2474 | "pk12util", 2475 | "pkg-config", 2476 | "pkill", 2477 | "pl2pm", 2478 | "pldd", 2479 | "pmap", 2480 | "pod2html", 2481 | "pod2man", 2482 | "pod2text", 2483 | "pod2usage", 2484 | "policytool", 2485 | "policytool8", 2486 | "popd", 2487 | "post-grohtml", 2488 | "ppm2tiff", 2489 | "pr", 2490 | "pre-grohtml", 2491 | "preconv", 2492 | "printenv", 2493 | "printf", 2494 | "prlimit", 2495 | "prtstat", 2496 | "ps", 2497 | "psed", 2498 | "pstree", 2499 | "pstree.x11", 2500 | "pstruct", 2501 | "ptx", 2502 | "pushd", 2503 | "pwd", 2504 | "pwdx", 2505 | "pwmake", 2506 | "pwscore", 2507 | "pydoc", 2508 | "pydoc2.7", 2509 | "pydoc27", 2510 | "pydoc3", 2511 | "pydoc3.6", 2512 | "python", 2513 | "python2.7", 2514 | "python27", 2515 | "python3", 2516 | "python3.6", 2517 | "python3.6m", 2518 | "python36", 2519 | "pyvenv3", 2520 | "pyvenv3.6", 2521 | "rake", 2522 | "ranlib", 2523 | "ras2tiff", 2524 | "raw", 2525 | "raw2tiff", 2526 | "rdoc", 2527 | "read", 2528 | "readarray", 2529 | "readelf", 2530 | "readlink", 2531 | "readonly", 2532 | "realpath", 2533 | "rebuild-jar-repository", 2534 | "rebuild-security-providers", 2535 | "rename", 2536 | "renice", 2537 | "reset", 2538 | "return", 2539 | "rev", 2540 | "rgb2ycbcr", 2541 | "ri", 2542 | "rm", 2543 | "rmdir", 2544 | "rmid", 2545 | "rmid8", 2546 | "rmiregistry", 2547 | "rmiregistry8", 2548 | "rpcgen", 2549 | "rpm", 2550 | "rpm2cpio", 2551 | "rpmdb", 2552 | "rpmkeys", 2553 | "rpmquery", 2554 | "rpmverify", 2555 | "ruby", 2556 | "runcon", 2557 | "s2p", 2558 | "script", 2559 | "scriptreplay", 2560 | "sctp_darn", 2561 | "sctp_status", 2562 | "sctp_test", 2563 | "sdiff", 2564 | "sed", 2565 | "select", 2566 | "seq", 2567 | "servertool", 2568 | "servertool8", 2569 | "set", 2570 | "setarch", 2571 | "setpriv", 2572 | "setsid", 2573 | "setterm", 2574 | "setup-nsssysinit", 2575 | "setup-nsssysinit.sh", 2576 | "sh", 2577 | "sha1sum", 2578 | "sha224sum", 2579 | "sha256sum", 2580 | "sha384sum", 2581 | "sha512sum", 2582 | "shift", 2583 | "shopt", 2584 | "shred", 2585 | "shuf", 2586 | "signver", 2587 | "size", 2588 | "skill", 2589 | "slabtop", 2590 | "sleep", 2591 | "snice", 2592 | "soelim", 2593 | "sort", 2594 | "sotruss", 2595 | "source", 2596 | "splain", 2597 | "split", 2598 | "sprof", 2599 | "sqlite3", 2600 | "ssltap", 2601 | "stat", 2602 | "stdbuf", 2603 | "stream", 2604 | "strings", 2605 | "strip", 2606 | "stty", 2607 | "sum", 2608 | "suspend", 2609 | "sync", 2610 | "tabs", 2611 | "tac", 2612 | "tail", 2613 | "tailf", 2614 | "tar", 2615 | "taskset", 2616 | "tbl", 2617 | "tee", 2618 | "test", 2619 | "then", 2620 | "thumbnail", 2621 | "tic", 2622 | "tiff2bw", 2623 | "tiff2pdf", 2624 | "tiff2ps", 2625 | "tiff2rgba", 2626 | "tiffcmp", 2627 | "tiffcp", 2628 | "tiffcrop", 2629 | "tiffdither", 2630 | "tiffdump", 2631 | "tiffinfo", 2632 | "tiffmedian", 2633 | "tiffset", 2634 | "tiffsplit", 2635 | "time", 2636 | "timeout", 2637 | "times", 2638 | "tload", 2639 | "tnameserv", 2640 | "tnameserv8", 2641 | "toe", 2642 | "top", 2643 | "touch", 2644 | "tput", 2645 | "tr", 2646 | "trap", 2647 | "troff", 2648 | "true", 2649 | "truncate", 2650 | "tset", 2651 | "tsort", 2652 | "ttmkfdir", 2653 | "tty", 2654 | "type", 2655 | "typeset", 2656 | "tzselect", 2657 | "ucs2any", 2658 | "ul", 2659 | "ulimit", 2660 | "umask", 2661 | "unalias", 2662 | "uname", 2663 | "unexpand", 2664 | "uniq", 2665 | "unlink", 2666 | "unpack200", 2667 | "unpack2008", 2668 | "unset", 2669 | "unshare", 2670 | "until", 2671 | "unxz", 2672 | "unzip", 2673 | "unzipsfx", 2674 | "update-ca-trust", 2675 | "update-mime-database", 2676 | "uptime", 2677 | "urlgrabber", 2678 | "urlgrabber-2.7", 2679 | "users", 2680 | "utmpdump", 2681 | "uuidgen", 2682 | "vdir", 2683 | "vmstat", 2684 | "w", 2685 | "wait", 2686 | "watch", 2687 | "watchgnupg", 2688 | "wc", 2689 | "wdctl", 2690 | "whereis", 2691 | "which", 2692 | "while", 2693 | "who", 2694 | "whoami", 2695 | "withsctp", 2696 | "x86_64", 2697 | "xargs", 2698 | "xmlcatalog", 2699 | "xmllint", 2700 | "xmlwf", 2701 | "xsltproc", 2702 | "xz", 2703 | "xzcat", 2704 | "xzcmp", 2705 | "xzdec", 2706 | "xzdiff", 2707 | "xzegrep", 2708 | "xzfgrep", 2709 | "xzgrep", 2710 | "xzless", 2711 | "xzmore", 2712 | "yes", 2713 | "yum", 2714 | "zcat", 2715 | "zcmp", 2716 | "zdiff", 2717 | "zegrep", 2718 | "zfgrep", 2719 | "zforce", 2720 | "zgrep", 2721 | "zipgrep", 2722 | "zipinfo", 2723 | "zless", 2724 | "zmore", 2725 | "znew", 2726 | "zsoelim", 2727 | "{", 2728 | "}" 2729 | ], 2730 | "versions": false 2731 | }, 2732 | "ruby2.7": { 2733 | "cmds": [ 2734 | "!", 2735 | ".", 2736 | ":", 2737 | "[", 2738 | "[[", 2739 | "]]", 2740 | "alias", 2741 | "arch", 2742 | "awk", 2743 | "base64", 2744 | "basename", 2745 | "bash", 2746 | "bashbug", 2747 | "bashbug-64", 2748 | "bg", 2749 | "bind", 2750 | "break", 2751 | "builtin", 2752 | "bundle", 2753 | "bundler", 2754 | "ca-legacy", 2755 | "caller", 2756 | "captoinfo", 2757 | "case", 2758 | "cat", 2759 | "catchsegv", 2760 | "cd", 2761 | "chcon", 2762 | "chgrp", 2763 | "chmod", 2764 | "chown", 2765 | "cksum", 2766 | "clear", 2767 | "comm", 2768 | "command", 2769 | "compgen", 2770 | "complete", 2771 | "compopt", 2772 | "continue", 2773 | "coproc", 2774 | "cp", 2775 | "csplit", 2776 | "cut", 2777 | "date", 2778 | "dd", 2779 | "declare", 2780 | "df", 2781 | "dgawk", 2782 | "dir", 2783 | "dircolors", 2784 | "dirname", 2785 | "dirs", 2786 | "disown", 2787 | "do", 2788 | "done", 2789 | "du", 2790 | "echo", 2791 | "egrep", 2792 | "elif", 2793 | "else", 2794 | "enable", 2795 | "env", 2796 | "erb", 2797 | "esac", 2798 | "eval", 2799 | "exec", 2800 | "exit", 2801 | "expand", 2802 | "export", 2803 | "expr", 2804 | "factor", 2805 | "false", 2806 | "fc", 2807 | "fg", 2808 | "fgrep", 2809 | "fi", 2810 | "fmt", 2811 | "fold", 2812 | "for", 2813 | "function", 2814 | "gawk", 2815 | "gem", 2816 | "gencat", 2817 | "getconf", 2818 | "getent", 2819 | "getopts", 2820 | "grep", 2821 | "groups", 2822 | "hash", 2823 | "head", 2824 | "help", 2825 | "history", 2826 | "hostid", 2827 | "iconv", 2828 | "id", 2829 | "if", 2830 | "igawk", 2831 | "in", 2832 | "info", 2833 | "infocmp", 2834 | "infokey", 2835 | "infotocap", 2836 | "install", 2837 | "irb", 2838 | "jobs", 2839 | "join", 2840 | "kill", 2841 | "ldd", 2842 | "let", 2843 | "link", 2844 | "ln", 2845 | "local", 2846 | "locale", 2847 | "localedef", 2848 | "logname", 2849 | "logout", 2850 | "ls", 2851 | "makedb", 2852 | "mapfile", 2853 | "md5sum", 2854 | "mkdir", 2855 | "mkfifo", 2856 | "mknod", 2857 | "mktemp", 2858 | "mv", 2859 | "nice", 2860 | "nl", 2861 | "nohup", 2862 | "nproc", 2863 | "numfmt", 2864 | "od", 2865 | "p11-kit", 2866 | "paste", 2867 | "pathchk", 2868 | "pgawk", 2869 | "pinky", 2870 | "pldd", 2871 | "popd", 2872 | "pr", 2873 | "printenv", 2874 | "printf", 2875 | "ptx", 2876 | "pushd", 2877 | "pwd", 2878 | "racc", 2879 | "racc2y", 2880 | "rake", 2881 | "rdoc", 2882 | "read", 2883 | "readarray", 2884 | "readlink", 2885 | "readonly", 2886 | "realpath", 2887 | "reset", 2888 | "return", 2889 | "ri", 2890 | "rm", 2891 | "rmdir", 2892 | "rpcgen", 2893 | "ruby", 2894 | "runcon", 2895 | "sed", 2896 | "select", 2897 | "seq", 2898 | "set", 2899 | "sh", 2900 | "sha1sum", 2901 | "sha224sum", 2902 | "sha256sum", 2903 | "sha384sum", 2904 | "sha512sum", 2905 | "shift", 2906 | "shopt", 2907 | "shred", 2908 | "shuf", 2909 | "sleep", 2910 | "sort", 2911 | "sotruss", 2912 | "source", 2913 | "split", 2914 | "sprof", 2915 | "stat", 2916 | "stdbuf", 2917 | "stty", 2918 | "sum", 2919 | "suspend", 2920 | "sync", 2921 | "tabs", 2922 | "tac", 2923 | "tail", 2924 | "tee", 2925 | "test", 2926 | "then", 2927 | "tic", 2928 | "time", 2929 | "timeout", 2930 | "times", 2931 | "toe", 2932 | "touch", 2933 | "tput", 2934 | "tr", 2935 | "trap", 2936 | "true", 2937 | "truncate", 2938 | "trust", 2939 | "tset", 2940 | "tsort", 2941 | "tty", 2942 | "type", 2943 | "typeset", 2944 | "tzselect", 2945 | "ulimit", 2946 | "umask", 2947 | "unalias", 2948 | "uname", 2949 | "unexpand", 2950 | "uniq", 2951 | "unlink", 2952 | "unset", 2953 | "until", 2954 | "update-ca-trust", 2955 | "users", 2956 | "vdir", 2957 | "wait", 2958 | "wc", 2959 | "while", 2960 | "who", 2961 | "whoami", 2962 | "y2racc", 2963 | "yes", 2964 | "{", 2965 | "}" 2966 | ], 2967 | "versions": false 2968 | } 2969 | } 2970 | --------------------------------------------------------------------------------