-
Notifications
You must be signed in to change notification settings - Fork 13
Initial review of content, making changes to improve clarity #19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Correct American endings to English
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just minor details and then ready to merge.
@@ -203,9 +201,16 @@ Output | |||
``` | |||
This overwrites what is in quotes.txt with the content of the test1.txt, so it has to be used with caution. | |||
### **Move file to another directory** | |||
Lets ay that we want to move the file data.doc from the chapter_1 folder to the oen above directory which is the project_1. We again use ***mv*** but with different arguments. | |||
Lets say that we want to move the file (animals.csv) from the chapter_1 folder to one directory (up) or directory above which is (project_1), and then it's subdirectory (chapter_2). We again use ***mv*** but with different arguments. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lets say that we want to move the file (animals.csv) from the chapter_1 folder to one directory (up) or directory above which is (project_1), and then it's subdirectory (chapter_2). We again use ***mv*** but with different arguments. | |
Let's say that we want to move the file (animals.csv) from the chapter_1 folder to one directory above (project_1) in its subdirectory (chapter_2). We again use ***mv*** but with different arguments. |
To move in across the directory structure, let's say we are at /Users/mary/project_1/chapter_1, we want to move animals.csv there to /Users/mary/project_1/chapter_2: | ||
|
||
**[DW]** the animals.csv (in chapter_2) is not necessary, or do you mean to explain another topic?[/DW] | ||
**[MT]** i wanted to show that we move files (not necessary documents) from one directory to othe directory with difefrent path | ||
|
||
```bash | ||
mv animals.csv ../chapter_2/animals.csv |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
mv animals.csv ../chapter_2/animals.csv | |
mv animals.csv ../chapter_2/. |
Don't need to put animals twice. You can just put the . there to indicate you want to keep the same name as the file.
|
||
To move in the nesting : /Users/mary/project_1/chapter_1 | ||
**[DW]** Need example, something like this? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think you need anything from lines 206-213. I know some of this is just discussion on how to complete, but would remove all of it.
The animal.csv doesn't exists at the chapter_1 folder anymore | ||
When you go up one directory at the project_1 folder and then into the chapter_2 folder (../chapter_2) look in the file list, we will found it there. | ||
**[DW]** I think it's plural animals.csv [/DW] | ||
**[MT]** its the name of a file which is singular |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You've referred to the file throughout as animals.csv
**[DW]** I think it's plural animals.csv [/DW] | ||
**[MT]** its the name of a file which is singular | ||
|
||
The animals.csv doesn't exist at the chapter_1 folder anymore. When you go up one directory at the project_1 folder and then into the chapter_2 folder (../chapter_2) look in the file list, we will animals.csv there. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The animals.csv doesn't exist at the chapter_1 folder anymore. When you go up one directory at the project_1 folder and then into the chapter_2 folder (../chapter_2) look in the file list, we will animals.csv there. | |
The animals.csv doesn't exist in the chapter_1 folder anymore. When you go up one directory at the project_1 folder and then into the chapter_2 folder (../chapter_2), the file animals.csv will now appear there. |
No description provided.