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
package it.alfonsopauciello.config; | |
import org.eclipse.microprofile.config.spi.ConfigSource; | |
import java.io.FileReader; | |
import java.util.Properties; | |
import java.util.Set; | |
public class MultipleFilesConfigSource implements ConfigSource { | |
private static final Properties configuration = new Properties(); |
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 | |
# Functions | |
EscapeFilename() | |
{ | |
printf '%s' "$1" | sed -e 's/[^A-Za-z0-9._-]/_/g' | |
} | |
# Configuration | |
S3CMD_PARAMETERS= |