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 | |
| echo "downloading Edge" | |
| curl "https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/abc8549e-2631-4ce7-acf9-60093e60ee95/MicrosoftEdge-148.0.3967.54_global.dmg?brand=M101&_.%25%E2%80%8B=" -o edge.dmg | |
| DMG_PATH="./edge.dmg" | |
| VOLUME_NAME=$(hdiutil info | grep -E '^/dev/' | awk '{print $1}') # Pre-check for existing mounts | |
| echo "Mounting $DMG_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
| #!/bin/bash | |
| echo "\n" | |
| echo "127.0.0.1 mysupertestsite" >> /etc/hosts |