shell: add more interpreters (#3708)

* ash: only interpreter, extension is more commonly used for
  Kingdom of Loathing scripting, e.g. github.com/twistedmage/assorted-kol-scripts

* dash: only interpreter, extension is more commonly used for
  dashboarding-related stuff

* ksh: extension was already present

* mksh

* pdksh
This commit is contained in:
Santiago M. Mola
2017-07-20 11:33:28 +02:00
committed by Colin Seymour
parent 37979b26b0
commit 470a82d9f5
6 changed files with 15 additions and 0 deletions

2
test/fixtures/Shell/ash-env vendored Normal file
View File

@@ -0,0 +1,2 @@
#!/usr/bin/env ash
echo "ash"

2
test/fixtures/Shell/dash-env vendored Normal file
View File

@@ -0,0 +1,2 @@
#!/usr/bin/env dash
echo "dash"

2
test/fixtures/Shell/ksh-env vendored Normal file
View File

@@ -0,0 +1,2 @@
#!/usr/bin/env ksh
echo "ksh"

2
test/fixtures/Shell/mksh vendored Normal file
View File

@@ -0,0 +1,2 @@
#!/bin/mksh
echo "mksh"

2
test/fixtures/Shell/pdksh-env vendored Normal file
View File

@@ -0,0 +1,2 @@
#!/usr/bin/env pdksh
echo "pdksh"