# sshpass-win32 **Repository Path**: qkmango/sshpass-win32 ## Basic Information - **Project Name**: sshpass-win32 - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-09-10 - **Last Updated**: 2025-09-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # sshpass-win32 Like https://linux.die.net/man/1/sshpass # Pre-Requirements To run sshpass, you must install: - Windows 10 Insider build 17733 or later # Usage ```sh Usage: sshpass [ options ] command arguments -h, --help show this help message and exit Password options: With no options - password will be taken from stdin -f= Take password to use from file -d= Use number as file descriptor for getting password -p= Provide password as argument (security unwise) -e Password is passed as env-var "SSHPASS" Other options: -P= Which string should sshpass search for to detect a password prompt -v Be verbose about what you're doing ``` # Examples ```sh sshpass -p 12345 ssh xhcoding@192.168.139.128 ls ``` ```sh sshpass -p 12345 rsync -avz -e 'c:/Users/xhcoding/scoop/apps/cwrsync/current/bin/ssh.exe' README.md xhcoding@192.168.139.128:/home/xhcoding/ ```