2024-10-06 19:56:01 -05:00

28 lines
639 B
Plaintext

# Sample .netrc file
# Configuration for accessing example.com
machine example.com
login exampleuser
password examplepass
# Configuration for accessing another-site.com
machine another-site.com
login anotheruser
password anotherpass
# Configuration for accessing an FTP server at ftp.myserver.com
machine ftp.myserver.com
login ftpuser
password ftppass
# Configuration with an account for systems that require it
machine account-required.com
login myuser
password mypassword
account myaccount
# Wildcard for default login when no specific machine is specified
default
login defaultuser
password defaultpass