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
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 | |
MAX_DOCUMENTS=100 | |
MAX_PAGES=300 | |
for model in CO CR GX PX; do | |
mkdir out/$model | |
case $model in | |
"CO" ) GEOMETRY="left=2.9in,top=1.7in" ;; | |
"CR" ) GEOMETRY="left=2.9in,top=1.6in" ;; |
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/sh | |
# -m mountpoint | |
# -d device | |
while getopts ":d:m:" opt | |
do | |
case $opt in | |
d) | |
DEVICE_TMP=$(ls /dev/disk/by-label/* | sed 's/ /\n/g'\ | |
| grep "$OPTARG") | |
if [ "$DEVICE_TMP" != "" ]; then |
NewerOlder