Revision 0bea3e80a876cceb9e179ef3a64d94103c350c41 authored by Romain Francois on 12 August 2020, 15:15:45 UTC, committed by Romain Francois on 12 August 2020, 15:15:45 UTC
1 parent 3ddaae5
Raw File
run-in.sh
#!/bin/sh
#
# Intended usage:
#
# ls -d 0* | parallel -I"{}" -q ./run-in.sh "{}" -e 'packageVersion("dplyr")'
#
# Tested on Ubuntu.


set -e

dir=$1
shift

echo "#" ${dir}
cd ${dir}

"$@"
back to top