This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -e | |
| from=sda | |
| to=sdb | |
| function copyGPT() { | |
| sudo sgdisk -R /dev/$to /dev/$from | |
| sudo sgdisk -G /dev/$to | |
| } | |
| function getNonEmptyPvs() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| function showMeDirsAndCdToOneOfDirectories() { | |
| count=0 | |
| for dir in $(dirs); do | |
| if [ -d $(echo $dir | sed "s#~#$HOME#") ]; then | |
| echo $count $dir | |
| fi | |
| count=$(( $count + 1 )) | |
| done | awk ' | |
| { |
NewerOlder