Task 2.6 : In this exercise, you will create a script to echo users, based on a list of usernames in a file.
1. create a new file called userlist.
#vi userlist
2. Insert a short list of usernames, such as the following. Make sure that none are the names of existing users.
moe
larry
curly
binny
3. create a script file userscript.sh and type the following lines
#!/bin/bash for TheUSER in $(cat userlist) do
echo The user is $TheUSER done
4. Add the permissions and run the script
show all input and output, as well as screen shots for every step taken. I am running the code on my terminal
1.create a new file called userlist.

2. Insert a short list of usernames, such as the following. Make sure that none are the names of existing users.
Enter i to start editing the file

Enter ESC and then :wq to save and quit
3. create a script file userscript.sh


4. Add the permissions and run the script
chmod to change the permission
of the file userscript.sh to 777 so that anyone can execute the
script

Task 2.6 : In this exercise, you will create a script to echo users, based on...
Open vi or pico and create a script called Information. Add the contents from the following table to the script: (Hint: use echo to add blank lines to your output and to write out the headings). Headings: Utilities (command to execute) Today’s date is: date The current users logged on to the system are: who My current startup directory is: pwd Today’s identification information is: id The processes running on my system are: ps Add a header to your Information...
In this exercise, you will create a script called file_ops.sh that uses the various file operators The file_ops.sh script will Use one command line argument Use four IF THEN statement to compare the first command line argument Determine which file operators to use that produces the following output when the script run with the arguments shown WARNING: In the IF THEN statements, to avoid syntax error messages, there must be a space before and after each bracket and also between...
Copy/Paste your script from 5b here.
4. Let's look at a more complicated script executable. a. Write the following as script6.sh and change its permissions to count for num in d do if num eq 100 then count (count+1) done echo The number 10 was found $count times What is the output? Run the script as ./script6.sh 10 20 30 10 40 20 50 10 60 <enter Summarize what the script does r using the read command. The following script...
Objective : Write a C Shell script which copies all files(*.java and *.class) from your home directory to a new one, and Analyze the new directory information such as number of files, user permissions, and disk usage. Sample Output: << CS Directory Analysis >> Date: ============================================================ Current Directory: /home/tomss New Directory Created : /home/tomss/pgm01 File information Total Number of files : 22 files Directory files: 0 files Plain text files: 10 files File have read permissions: 3 files File have...
LINUX QUESTIONS (dont have to display output, I will be running these commands myself to check the output) Display the command(s) used to do the following: create an empty file called history by using just a redirection operator. Verify and show. Show/verify all results (i.e., all commands and their corresponding outputs). Wait 1 minute or more and then display the command(s) used to do the following: change the timestamp on the history file you just created. Verify/display the change. Show/verify...