mirror of
https://github.com/namibia/tips.git
synced 2025-01-09 08:30:23 +00:00
Correct paths
This commit is contained in:
parent
55e2d4fa75
commit
04323cc7be
@ -698,7 +698,7 @@ git rebase --interactive HEAD~2
|
|||||||
|
|
||||||
## List of git repositories in multiple directories.
|
## List of git repositories in multiple directories.
|
||||||
```sh
|
```sh
|
||||||
find -E ${targetdir} \( -regex '.*/\.git
|
find -E /path1 /path2 /path3 \( -regex '.*/\.git
|
||||||
-not -regex '.*/\..*/\.git
|
-not -regex '.*/\..*/\.git
|
||||||
\) -type d -print0 | xargs -0 -I {} dirname {}
|
\) -type d -print0 | xargs -0 -I {} dirname {}
|
||||||
```
|
```
|
||||||
@ -706,7 +706,7 @@ find -E ${targetdir} \( -regex '.*/\.git
|
|||||||
|
|
||||||
__Alternatives:__
|
__Alternatives:__
|
||||||
```sh
|
```sh
|
||||||
find ${targetdir} -regextype posix-egrep \( -regex '.*/\.git
|
find /path1 /path2 /path3 -regextype posix-egrep \( -regex '.*/\.git
|
||||||
-not -regex '.*/\..*/\.git
|
-not -regex '.*/\..*/\.git
|
||||||
\) -type d -print0 | xargs -0 -I {} dirname {}
|
\) -type d -print0 | xargs -0 -I {} dirname {}
|
||||||
```
|
```
|
||||||
|
@ -313,6 +313,6 @@
|
|||||||
"tip": "git rebase --interactive HEAD~2"
|
"tip": "git rebase --interactive HEAD~2"
|
||||||
}, {
|
}, {
|
||||||
"title": "List of git repositories in multiple directories.",
|
"title": "List of git repositories in multiple directories.",
|
||||||
"tip": "find -E ${targetdir} \\( -regex '.*/\\.git$' -not -regex '.*/\\..*/\\.git$' \\) -type d -print0 | xargs -0 -I {} dirname {}",
|
"tip": "find -E /path1 /path2 /path3 \\( -regex '.*/\\.git$' -not -regex '.*/\\..*/\\.git$' \\) -type d -print0 | xargs -0 -I {} dirname {}",
|
||||||
"alternatives": ["find ${targetdir} -regextype posix-egrep \\( -regex '.*/\\.git$' -not -regex '.*/\\..*/\\.git$' \\) -type d -print0 | xargs -0 -I {} dirname {}"]
|
"alternatives": ["find /path1 /path2 /path3 -regextype posix-egrep \\( -regex '.*/\\.git$' -not -regex '.*/\\..*/\\.git$' \\) -type d -print0 | xargs -0 -I {} dirname {}"]
|
||||||
}]
|
}]
|
||||||
|
Loading…
Reference in New Issue
Block a user