Skip to content

Commit e374fa5

Browse files
committed
added ftp and ssh scripts
1 parent bdf557e commit e374fa5

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
secrets.sh

biuftp

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
3+
# import username from secrets.sh
4+
source "secrets.sh"
5+
6+
# ssh into the server
7+
sftp -J $biu_username@vpn.esc.biu.ac.il:2222 $biu_username@planet.cs.biu.ac.il

biussh

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
3+
# import username from secrets.sh
4+
source "secrets.sh"
5+
6+
# ssh into the server
7+
ssh -J $biu_username@vpn.esc.biu.ac.il:2222 $biu_username@planet.cs.biu.ac.il

0 commit comments

Comments
 (0)