This script mimics the functionality of GNU Stow, allowing you to create symlinks to files and directories in a specified path.
It is not possible to install the traditional GNU stow
command on Windows.
Therefore, I have constructed a python
script that mimics the core behavior of GNU stow
.
-
Obtain the
stow
script:wget https://github.com/dotbrains/stow/-/raw/main/stow.py -O ~/.local/bin/stow
-
Make the script executable:
chmod +x ~/.local/bin/stow
-
Add it to your PATH (optional): If you want to run the script from anywhere, you can add it to your
PATH
. For example, add the following line to your.bashrc
or.zshrc
:export PATH="$HOME/.local/bin:$PATH"
To use the script, simply run it from the command line:
stow
By default, the script will create symlinks to all files and directories in the current directory, excluding those listed in .stow-local-ignore
to the current users' $HOME
directory.
The script accepts the following options:
-h, --help
: Print this help message-n, --dry-run
: Perform a dry run and print the resulting file system structure-p, --path
: Specify the path to the directory containing files to stow
- Create symlinks to all files and directories in the current directory:
stow
- Perform a dry run and print the resulting file system structure:
stow -n
- Specify a custom path to the directory containing files to stow:
stow -p /path/to/directory
- Bash shell
ln
command (for creating symlinks)mkdir
command (for creating directories)
[+] Using path: /path/to/source
[+] --- Stow Configuration ---
[+] Source Directory: /path/to/source
[+] Ignore List: ['.stow-local-ignore']
[+] Target Directory: /home/user
[+] Dry Run: False
[!] --- Files to Stow ---
[!] - file1
[!] - file2
[!] - file3
[+] --- Stowing Files ---
[!] Would create symlink: /home/user/file1 -> /path/to/source/file1
[!] Would create symlink: /home/user/file2 -> /path/to/source/file2
[!] Would create symlink: /home/user/file3 -> /path/to/source/file3
To run the tests, execute the following command:
python3 test_stow.py
To run the tests within Git Bash on Windows in PyCharm, you need to set the SHELL
environment variable to bash.exe
:
- Open the
Run/Debug Configurations
dialog. - Select the
stow
configuration. - Add the following environment variable:
- Name:
SHELL
- Value:
bash.exe
- Description:
Path to the shell executable
- Name:
- Click
OK
to save the configuration. - Run the tests.
This project is licensed under the MIT License - see the LICENSE file for details.