9 lines
120 B
Bash
9 lines
120 B
Bash
#!bin/bash
|
|
|
|
set -xeuo pipefail
|
|
|
|
node action.js txt >/tmp/t1
|
|
node action.js json >/tmp/t2
|
|
node action.js shell >/tmp/t3
|
|
|