mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-09-08 12:13:49 +02:00
stow: add page (#1979)
This commit is contained in:
parent
1f19805177
commit
67b6003970
1 changed files with 24 additions and 0 deletions
24
pages/common/stow.md
Normal file
24
pages/common/stow.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
# stow
|
||||
|
||||
> Symlink manager.
|
||||
> Often used to manage dotfiles.
|
||||
|
||||
- Symlink all files recursively to a given directory:
|
||||
|
||||
`stow --target={{path/to/target_directory}} {{file1 folder1 file2 folder2}}`
|
||||
|
||||
- Delete symlinks recursively from a given directory:
|
||||
|
||||
`stow --delete --target={{path/to/target_directory}} {{file1 folder1 file2 folder2}}`
|
||||
|
||||
- Simulate to see what the result would be like:
|
||||
|
||||
`stow --simulate --target={{path/to/target_directory}} {{file1 folder1 file2 folder2}}`
|
||||
|
||||
- Delete and resymlink:
|
||||
|
||||
`stow --restow --target={{path/to/target_directory}} {{file1 folder1 file2 folder2}}`
|
||||
|
||||
- Exclude files matching a regular expression:
|
||||
|
||||
`stow --ignore={{regex}} --target={{path/to/target_directory}} {{file1 folder1 file2 folder2}}`
|
Loading…
Add table
Reference in a new issue