Skip to content

Instantly share code, notes, and snippets.

View IlyaKisil's full-sized avatar

Ilya Kisil IlyaKisil

View GitHub Profile
@IlyaKisil
IlyaKisil / OSX_writing_to_ntfs.md
Last active October 22, 2023 11:52
Free NTFS read and write solutions

Free NTFS read and write solutions

Mac OS does not support writing to NTFS disk by default. Here is a simple work around to enable NTFS Read/Write support.

  1. Identify either <NAME> or <Universal_Unique_Identifier> of your external device, e.g. use Disk Utility.
  2. Type in terminal
    sudo nano /etc/fstab
    
  3. Add the line that does a trick:
@IlyaKisil
IlyaKisil / snippets.sh
Created January 2, 2019 00:04
[Snippets] Snippets for bash
#!/usr/bin/env bash
set -e
function help() {
local _FILE_NAME
_FILE_NAME=`basename ${BASH_SOURCE[0]}`
cat << HELP_USAGE