samgis / scripts /copy_folder_to_host.sh
aletrn's picture
[feat] revert to aws lambda - wip
243f395
raw
history blame
235 Bytes
#!/usr/bin/env bash
echo "options:"
echo "\$1: container folder we copy from"
echo "\$2: container folder we copy to (could also be an host folder)"
cp -r "$1" "$2"
echo "copied folder $1 to folder $2!"
ls -ld "$2"
ls -l "$2"
exit 0