I hereby claim:
- I am risaacson on github.
- I am risaacson (https://keybase.io/risaacson) on keybase.
- I have a public key ASCbAHxWvn5nfhe0RtxanGQYbvElWNWW1TL4l1RKv04LAwo
To claim this, I am signing this object:
| ## Make sure that you are in the sudoers | |
| id | |
| # If your user is not in the 'wheel' group execute the next command. | |
| su - | |
| usermod -a -G wheel YOUR_USERNAME | |
| exit | |
| newgrp wheel | |
| # Log out of your worksation and log back in | |
| # check to make sure that you are in the wheel group. |
I hereby claim:
To claim this, I am signing this object:
| ### Keybase proof | |
| I hereby claim: | |
| * I am risaacson on github. | |
| * I am risaacson (https://keybase.io/risaacson) on keybase. | |
| * I have a public key whose fingerprint is 8D3A A61A BC27 766E 2B2B D289 F650 D155 D276 FD09 | |
| To claim this, I am signing this object: |
| #!/usr/bin/env bash | |
| # set -x | |
| # DEBUG='echo' | |
| device=$1 | |
| [ ! -f "${device}" ] && exit 1 | |
| output_dir=$( echo "${device}" | sed 's/.img//g' ) | |
| [ -d "${output_dir}" ] && exit 1 | |
| mkdir -p "${output_dir}" |
| #!/usr/bin/env bash | |
| # set -x | |
| # DEBUG='echo' | |
| get_next_multiplier() { | |
| current_multiplier=$1 | |
| multiplier=$(( ${current_multiplier} * 2 )) | |
| } |
| #!/usr/bin/env bash | |
| # set -x | |
| while getopts ":h" opt; do | |
| case ${opt} in | |
| h) | |
| echo "efficent_dd_with_start_and_count.sh INPUT_FILE OUTPUT_FILE START_BYTE BYTE_SIZE" | |
| exit 0 | |
| ;; | |
| \?) |