Initial review of content, making changes to improve clarity#19
Open
dtwwwc1e wants to merge 3 commits intoHealthBioscienceIDEAS:mainfrom
Open
Initial review of content, making changes to improve clarity#19dtwwwc1e wants to merge 3 commits intoHealthBioscienceIDEAS:mainfrom
dtwwwc1e wants to merge 3 commits intoHealthBioscienceIDEAS:mainfrom
Conversation
Correct American endings to English
davecash75
requested changes
Jun 7, 2023
Contributor
davecash75
left a comment
There was a problem hiding this comment.
Just minor details and then ready to merge.
| 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. |
Contributor
There was a problem hiding this comment.
Suggested change
| 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. |
| **[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 |
Contributor
There was a problem hiding this comment.
Suggested change
| 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.
| 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. | ||
|
|
||
| To move in the nesting : /Users/mary/project_1/chapter_1 | ||
| **[DW]** Need example, something like this? |
Contributor
There was a problem hiding this comment.
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 |
Contributor
There was a problem hiding this comment.
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. |
Contributor
There was a problem hiding this comment.
Suggested change
| 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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.