Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

avoid saving intermediate files on a public dir #31

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions processes-shell/tests/11.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ls tests/p2a-test>/tmp/output11
cat /tmp/output11
rm -f /tmp/output11
ls tests/p2a-test>output11
cat output11
rm -f output11
exit
14 changes: 7 additions & 7 deletions processes-shell/tests/20.in
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
path /bin tests
p1.sh > /tmp/output201 & p2.sh > /tmp/output202 & p3.sh > /tmp/output203
cat /tmp/output201
cat /tmp/output202
cat /tmp/output203
rm -rf /tmp/output201
rm -rf /tmp/output202
rm -rf /tmp/output203
p1.sh > output201 & p2.sh > output202 & p3.sh > output203
cat output201
cat output202
cat output203
rm -rf output201
rm -rf output202
rm -rf output203
exit
6 changes: 3 additions & 3 deletions processes-shell/tests/22.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
path /bin tests
p5.sh > /tmp/output22 & p4.sh > /tmp/output22
cat /tmp/output22
rm -f /tmp/output22
p5.sh > output22 & p4.sh > output22
cat output22
rm -f output22
exit