Skip to content

Instantly share code, notes, and snippets.

View tejasvaidhyadev's full-sized avatar
🎯

Tejas Vaidhya tejasvaidhyadev

🎯
View GitHub Profile
@itsShnik
itsShnik / ubuntu-setup.md
Last active July 15, 2020 04:30
Useful applications for Ubuntu

Setting up useful applications in Ubuntu

Vim

Install vim using the default package manager:

sudo apt install vim
@ankitmundada
ankitmundada / download_gdrive
Last active April 17, 2022 23:11
Shell Script to download Publicly shared Google drive files
#!/bin/bash
# Get files from Google Drive
# Source: https://stackoverflow.com/a/50573452/2382312
# Usage: download_gdrive FILE_ID DESTINATION_PATH
# $1 = file ID
# $2 = file name
URL="https://drive.google.com/uc?export=download&id=$1"