-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Polyelectrolyte to list of variables in .vscode/settings.json and…
… add script for moving data from zeal to local directory
- Loading branch information
1 parent
b3705cc
commit fafea84
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -114,6 +114,7 @@ | |
"pinstride", | ||
"PLUMEDROOT", | ||
"pname", | ||
"Polyelectrolyte", | ||
"POSRES", | ||
"PREC", | ||
"printfile", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#!/usr/bin/env bash | ||
# -*- coding: utf-8 -*- | ||
# Created by Alec Glisman (GitHub: @alec-glisman) on February 2nd, 2023 | ||
# | ||
|
||
# built-in shell options | ||
set -o errexit # exit when a command fails. Add || true to commands allowed to fail | ||
set -o nounset # exit when script tries to use undeclared variables | ||
|
||
# data I/O directories | ||
remote_address='aglisman@zeal.caltech.edu' | ||
remote_dir='/nfs/zeal_nas/home_mount/aglisman/GitHub/Polyelectrolyte-Surface-Adsorption/data_archive/6_single_chain_binding/cleaned' | ||
local_dir='/Volumes/ExFat/single_chain_binding' | ||
pattern='*/2-concatenated/*' | ||
|
||
# ########################################################################## # | ||
# Move data to new directory with rsync # | ||
# ########################################################################## # | ||
|
||
# prompt user to accept or reject moving files | ||
echo "INFO) Moving files to new directory" | ||
echo "DEBUG) Source directory: ${remote_address}:${remote_dir}" | ||
echo "DEBUG) Destination directory: ${local_dir}" | ||
read -p "Do you want to move files from the source to the destination directory? (y/n) " -n 1 -r | ||
echo | ||
if [[ ! $REPLY =~ ^[Yy]$ ]]; then | ||
echo "INFO) Not moving files" | ||
else | ||
echo "INFO) Moving files" | ||
rsync --archive --verbose --progress --human-readable --dry-run \ | ||
--include="${pattern}" --exclude="*" \ | ||
"${remote_address}:${remote_dir}/" "${local_dir}/" | ||
fi | ||
|
||
echo "INFO) Done" |