File: Download Winscp para macfugu mac scp for mac filezilla scp mac winscp for mac 2016 sftp for mac scp client for mac cyberduck scp filezilla for mac 2 May 2017 Transmit is an FTP client for Mac OS X and Mac OS Classic (which is unsupported). It runs on any operating system with Java support (Mac OS X, Windows, Linux, *BSD "Dual pane file manager and SFTP/FTP client for Mac OS X ForkLift is designed to be the fastest, most powerful file 25 Oct 2013 I was looking for a usable alternative for my beloved WinSCP on Mac OSX and found an awesome tool called "Cyberduck". It offers: FTP (File Descubre la mejor alternativa a WinSCP en Softonic. Compara y descarga mas de 13 programas como WinSCP: FileZilla, Cyberduck, Transmit y mas. As we all know Apple software is the best woldwide
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| guid=`hostname|cut -f2 -d-|cut -f1 -d.` | |
| yum -y install bind bind-utils | |
| systemctl enable named | |
| systemctl stop named | |
| ### firewalld was being a bit problematic | |
| ### Since we turn it off later anyway, I've skipped this step. | |
| #firewall-cmd --permanent --zone=public --add-service=dns |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <VirtualHost *:80> | |
| ServerAdmin {USER}@cslavoie.com | |
| ServerName {DOMAIN} | |
| ServerAlias www.{DOMAIN} | |
| ServerAlias {USER}.localhost | |
| ServerAlias {USER}.static.cslavoie.com | |
| DocumentRoot {DOC_ROOT} | |
| <Directory {DOC_ROOT}> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <meta charset="utf-8"> | |
| <style> /* set the CSS */ | |
| .node circle { | |
| fill: #fff; | |
| stroke: steelblue; | |
| stroke-width: 3px; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| . .\NewXMLDocument.ps1 | |
| $rdp_domainname = "MicrosoftAccount" | |
| $rdp_username = "fred" | |
| $ssh_username = "fred" | |
| $vnc_username = "fred" | |
| $rdp_password = "changeme!" | |
| $ssh_password = "changeme!" | |
| $vnc_password = "changeme!" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $remoteAddr = bash.exe -c "ifconfig eth0 | grep 'inet '" | |
| $found = $remoteAddr -match '\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}'; | |
| if( $found ){ | |
| $remoteAddr = $matches[0]; | |
| echo $remoteAddr; | |
| } else{ | |
| echo "The Script Exited, the ip address of WSL 2 cannot be found"; | |
| exit; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| conv_brackets_uscore() { | |
| echo $1 | sed -E 's/[][{}()]/_/g' | |
| return 0 | |
| } | |
| conv_path_win_linux() { | |
| local _path | |
| local _del_trailing_slash_path |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function script-from-github ($weburl) { | |
| $ScriptFromGitHub = Invoke-WebRequest $weburl -UseBasicParsing | |
| Invoke-Expression $($ScriptFromGitHub.Content) | |
| } | |
| $weburl = https://gist.githubusercontent.com/fcenobi/502a16e3dc7f97b2b00afd29f87a1025/raw/cc599e096c29a18b398a82c5b3258175bdee0aa8/install-winget.ps1 | |
| script-from-github $weburl | |
| taskkill /F /IM explorer.exe |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # | |
| # Usage: dev_signed_cert.sh HOSTNAME | |
| # | |
| # Creates a CA cert and then generates an SSL certificate signed by that CA for the | |
| # given hostname. | |
| # | |
| # After running this, add the generated dev_cert_ca.cert.pem to the trusted root | |
| # authorities in your browser / client system. | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| curl https://raw.githubusercontent.com/fcenobi/script/master/etc/profile.d/aliases.sh > /etc/profile.d/aliases.sh && source /etc/profile.d/aliases.sh |