Try Magic Notes and save time.
Try it free
Try Magic Notes and save time
Crush your year with the magic of personalized studying.
Try it free
hello quizlet
Home
Subjects
Expert Solutions
Log in
Sign up
Linux Practice Exercises
4.5 (11 reviews)
Flashcards
Learn
Test
Match
Q-Chat
Get a hint
echo Jon > friends.txt
echo Jenna >> friends.txt
echo Sara >> friends.txt
Click the card to flip 👆
1. Create a file friends.txt with a list of names of three of your friends on separate lines.
Click the card to flip 👆
1 / 37
1 / 37
Flashcards
Learn
Test
Match
Q-Chat
Created by
Lacey_Lerch
Share
Share
Terms in this set (37)
echo Jon > friends.txt
echo Jenna >> friends.txt
echo Sara >> friends.txt
1. Create a file friends.txt with a list of names of three of your friends on separate lines.
cat friends.txt
2. Display the contents of friends.txt on the console.
mv friends.txt hommies.txt
3. Rename file friends.txt to homies.txt.
cp homies.txt humans.txt
4. Make a copy of homies.txt under the name humans.txt
ls h*.txt
5. List all files whose name begins with letter 'h' and ends with extension txt.