Skip to content

Instantly share code, notes, and snippets.

View dmthuc's full-sized avatar
💭
I may be slow to respond.

Dao Minh Thuc dmthuc

💭
I may be slow to respond.
  • TikTok PTE
  • Singapore
View GitHub Profile
@dmthuc
dmthuc / gcc-10-debian-buster.sh
Created August 11, 2021 09:17 — forked from s3rvac/gcc-10-debian-buster.sh
Steps to build GCC 10 on Debian Buster.
#!/bin/bash
#
# Steps to build GCC 10 on Debian Buster.
#
set -e -x
# Install all dependencies.
export DEBIAN_FRONTEND=noninteractive
apt update
@dmthuc
dmthuc / addbom
Created March 9, 2018 03:52
Shell script to add UTF-8 BOM to any file
#!/bin/bash
file=$1
cat $file > $file".temp"
printf "\xEF\xBB\xBF" > $file
cat $file".temp" >> $file
rm $file".temp"