Lab2A - Introduction to Command Line Interface
Steps
Task 1: Create a New Directory
a. Use the

b. Change your current working directory to the newly created 
mkdir
command to create a new directory named lab2
lab2
directory using the cd
command.Task 2: Creating Files
a. You are now inside the "lab2" directory. Create a text file named b. Create another file named

c. Use the
confirm that 'file1.txt' and 'file2' have been created. 
file1.txt
using the touch
command. Example: touch file1.txt
file2
(Without The .txt Extension) using thetouch
command. Example: touch file2
ls
command to list the contents of the "lab2" directory andconfirm that 'file1.txt' and 'file2' have been created.
Step 3: Viewing Files and Directories
a. List the standard files and directories in the 'lab2' directory in long
format (includes date and time) using the
b. List all files in the 'lab2' directory in long format using the
command. Observe the differences in output compared to part (a) 
format (includes date and time) using the
ls -l
command. Example: ls -l
ls -la
command. Observe the differences in output compared to part (a)
Step 4: Redirecting Output to a File
a. Redirect the output of the
Example:
ls -la
to a file named 'lab2_q2.txt' using the ">" redirect operator.Example:
ls -la > lab2_q2.txt
Step 5: Redirecting Output to a File (C)
a. Return to the /home directory using the 
b. Redirect the output of the
Example: 
cd
command. Example: cd
/home
ls -la
to a file named 'lab2_q3.txt' using the ">" redirect operator.Example:
ls -la > A2023XXX/lab2/lab2_q3.txt
Step 6: Return To Lab2 Dir
a. Return to the "lab2" directory using the 
b. Check the contents of the "lab2_q3.txt" file using the
Example : 
cd -
command. Example: cd -
cat
or less
command to see what's different from the previous output.Example :
cat lab2_q3.txt
Step 7: Creating and Appending to a File
a. Type the following command to create a file named "lab2_q5.txt" containing the text "Unix is great!!" and redirect it to that file.
Example:

b. Verify the contents of 'lab2_q5.txt' to see both the original text and
the appended text. 
Example:
echo Unix is great! > lab2_q5.txt | ls -la >> lab2_q5.txt
the appended text.
Step 8: Submission
a. Save and retain the files b. You will need to submit these files later using SFTP.
lab2_q2.txt
, lab2_q3.txt
and lab2_q5.txt
that you've created or modified during this lab.SFTP
Step 1: Launch PSFTP
You can easily launch the PSFTP application by searching for "PSFTP" in
your Windows search bar.
your Windows search bar.
Step 2: Connect to the Server
Type
depending on the server you are working on.
open student1.bptest.cloud
or open student2.bptest.cloud
depending on the server you are working on.
Dont Forget After the Open Command Type y
Step 3: Login
You will be prompted to enter your login credentials, which are the same
as your PuTTY login.
Ex.
as your PuTTY login.
Ex.
A2023XXXXX
& Your Password.Step 4: Set Up a Destination Folder
a. Create Folder in Your Desktop 
b. Return to SFTP and Type the 'lcd' command in the PSFTP prompt. Do not press Enter yet.
Copy the location of the 'lab2' folder (Ctrl + C), and then return to PSFTP and paste it. 
Any files you transfer via SFTP will now be located in
lab2
then copy the PATH.Copy the location of the 'lab2' folder (Ctrl + C), and then return to PSFTP and paste it.
C:\Users\2023XXXX\Desktop\lab2
Step 5: Retrieve Files
Type
specified file (adjust the path if your file is located elsewhere).
Similarly, type If you've executed the commands correctly, the files "lab2_q2.txt" and "lab2_q5.txt" should now be available in
get /home/studentID/lab2/lab2_q2.txt
to retrieve thespecified file (adjust the path if your file is located elsewhere).
get /home/studentID/lab2/lab2_q5.txt
to retrieve another file.C:\Users\StudentID\Desktop\lab2.
Commands
Modified atΒ 2024-09-26 14:10:23