cse15l-lab-reports

Lab Report 3

Copy whole directories with scp -r

1. Copying the whole markdown-parse directory to your ieng6 account.

Check the directory on my local computer using ls.

2022-02-09

Copy the directory over to the server using the scp command.

2022-02-09 (1)

2. Logging into ieng6 account after this and compiling and running the tests for your repository.

Log into the ieng6 account and use the command ls to make sure that the directory was successfully copied.

2022-02-09 (2)

2022-02-09 (3)

3. Show combining scp, ;, and ssh to copy the whole directory and run the tests in one line.

Combine the codes into one line using scp, ;, and ssh.

Reminder 1: Compile MarkdownParse.java before compiling MarkdownParseTest.java.
Reminder 2: Since my local computer has a different java version, replace javac and java with /software/CSE/oracle-java-se-14/jdk-14.0.2/bin/javac.

2022-02-11

2022-02-11 (1)