Skip to content

Instantly share code, notes, and snippets.

@minhhut
minhhut / README.md
Last active March 21, 2021 20:51
Script to download and update MS Edge for Linux
  1. Drop file microsoft-edge-dev.desktop in folder ~/.local/share/applications/
  2. Replace YOUR_USER in microsoft-edge-dev.desktop file with your account name (/home/<your_account>)
  3. Download and run sh update_msedge.sh to update latest version
  4. Check and see Microsoft Edge (Dev) from Start menu
@minhhut
minhhut / git_remove_local_branches.sh
Created September 20, 2017 15:10
Git remove all local branches
git branch -D `git branch --merged | grep -v \* | xargs`