From 8b2cbfc0e23e17c812ad7d970b370529273806bf Mon Sep 17 00:00:00 2001 From: Sophie <29382425+sophietheking@users.noreply.github.com> Date: Thu, 25 May 2023 09:56:06 +0200 Subject: [PATCH] [Improvement]: Error in shell command in subversion cli migration docs (#37225) --- .../importing-a-subversion-repository.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/migrations/importing-source-code/using-the-command-line-to-import-source-code/importing-a-subversion-repository.md b/content/migrations/importing-source-code/using-the-command-line-to-import-source-code/importing-a-subversion-repository.md index 493be0e25b1c..060a900d6746 100644 --- a/content/migrations/importing-source-code/using-the-command-line-to-import-source-code/importing-a-subversion-repository.md +++ b/content/migrations/importing-source-code/using-the-command-line-to-import-source-code/importing-a-subversion-repository.md @@ -34,7 +34,7 @@ To follow these steps, you must use a macOS or Linux system and have the followi 1. To get a list of authors in your Subversion project and store the list in `authors.txt`, run the following script: ```shell{:copy} - svn log -q | grep -e '^r' | awk 'BEGIN { FS = "|" } ; { print "$2 = $2\" }' | sort | uniq > authors.txt + svn log -q | grep -e '^r' | awk 'BEGIN { FS = "|" } ; { print $2" = "$2 }' | sed 's/^[ \t]*//' | sort | uniq > authors.txt ``` 1. Update your `authors.txt` file, mapping the author name used in the Subversion repository to the name you want to use in your Git repository, with the following format: