Add files via upload

This commit is contained in:
Scott Sutherland 2024-10-06 19:56:01 -05:00 committed by GitHub
parent 2115a5ca7a
commit 33710af121
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,27 @@
# 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