mirror of
https://git.savannah.gnu.org/git/parallel.git
synced 2024-11-22 14:07:55 +00:00
26 lines
674 B
Bash
Executable file
26 lines
674 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# SPDX-FileCopyrightText: 2021 Ole Tange, http://ole.tange.dk and Free Software and Foundation, Inc.
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
unset TIMEOUT
|
|
. `which env_parallel.bash`
|
|
env_parallel --session
|
|
|
|
host=$(parallel -j0 --halt now,success=1 ssh {} echo {} ::: android1 android2 2>/dev/null)
|
|
if [ -z "$host" ] ; then
|
|
echo Error: no android host working
|
|
else
|
|
echo $host >&2
|
|
|
|
doit() {
|
|
export PARALLEL_SSH='ssh -p2222'
|
|
parallel -k echo ::: Basic usage works
|
|
parallel -k -S localhost echo ::: Remote usage works
|
|
}
|
|
|
|
scp /usr/local/bin/parallel $host:/data/data/com.termux/files/usr/bin
|
|
env_parallel -S $host doit ::: a
|
|
fi
|