aboutsummaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2026-02-09 12:42:29 -0600
committerChristian Cleberg <[email protected]>2026-02-09 12:42:29 -0600
commitb417650dbea1f766322b284ed7a780cb80fe6503 (patch)
tree565e8baf9705cd76381e879cf7b4da20ba49d9c8 /content
parent52753ff80003a948d7be01a542982e35fb752de5 (diff)
downloadcleberg.net-b417650dbea1f766322b284ed7a780cb80fe6503.tar.gz
cleberg.net-b417650dbea1f766322b284ed7a780cb80fe6503.tar.bz2
cleberg.net-b417650dbea1f766322b284ed7a780cb80fe6503.zip
add stow -t flag example
Diffstat (limited to 'content')
-rw-r--r--content/blog/2026-02-08-gnu-stow.org9
1 files changed, 9 insertions, 0 deletions
diff --git a/content/blog/2026-02-08-gnu-stow.org b/content/blog/2026-02-08-gnu-stow.org
index ecf82f2..5370f87 100644
--- a/content/blog/2026-02-08-gnu-stow.org
+++ b/content/blog/2026-02-08-gnu-stow.org
@@ -55,6 +55,15 @@ mv ~/.zprofile ~/git/dotfiles/zsh/ && \
stow zsh
#+end_src
+By default, Stow will symlink your files (e.g., ~zsh~) to the parent directory
+of the directory in which you execute the command. Since we're in the
+~~/git/dotfiles~ directory, we need to modify our ~stow~ command to ensure Stow
+symlinks the files to our home directory:
+
+#+begin_src sh
+stow -t ~ zsh
+#+end_src
+
At this point, you have a centralized directory (~/git/dotfiles~) where you can
stow any file and use ~stow~ to symlink it back to another directory on your
system.