123456789101112131415161718192021222324 |
- #!/bin/bash
- SAVE_DIR="../saved"
- [[ $1 = "" ]] && exit
- scheme="../xcolor_code/$(basename "$1" .png)"
- if [[ ! -f "$scheme" ]]; then
- echo "$scheme does not exist"
- else
- [[ ! -d $SAVE_DIR ]] && mkdir $SAVE_DIR
- cp "$scheme" $SAVE_DIR
- cp "$1" $SAVE_DIR
- fi
|