We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78bbe24 commit 840739dCopy full SHA for 840739d
1 file changed
run
@@ -204,6 +204,9 @@ run() {
204
go run "$FILE"
205
fi
206
207
+ elif [[ ${FILE#*.} == pl ]]; then
208
+ perl "$FILE"
209
+
210
else
211
_ERROR_UFTC_
212
_EXIT_
@@ -235,7 +238,7 @@ for arg in "$@"; do
235
238
echo
236
239
;;
237
240
- *".c" | *".cpp" | *".py" | *".rs" | *".java" | *".sh" | *".js" | *".go")
241
+ *".c" | *".cpp" | *".py" | *".rs" | *".java" | *".sh" | *".js" | *".go"| *".pl")
242
FILE_LOCATION=$arg
243
if [[ ! -f $FILE_LOCATION ]]; then
244
0 commit comments