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 | |
# store the current dir | |
CUR_DIR=$(pwd) | |
# Let the person running the script know what's going on. | |
echo -e "\n\033[1mPulling in latest changes for all repositories...\033[0m\n" | |
# Find all git repositories and update it to the master latest revision | |
for i in $(find . -maxdepth 2 -name .git -type d ); do |
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
\usepackage[utf8]{inputenc} | |
\usepackage{ngerman} | |
\usepackage{graphicx} | |
\usepackage{ifthen} | |
\usepackage{xstring} | |
\usepackage{eso-pic} | |
%\windowrules %Fenster um Adress AN | |
\nowindowrules %Fenster um Adress AUS | |
%\nowindowtics %Faltmarkierung am Rand AUS |
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 com.opentext.installer.actions; | |
public final class Constants { | |
public static final String REGISTRY_RESOURCE_NAME = "ConfigurationFile"; | |
public static final String REGISTRY_ACTION_CONFIGURATION_ELEMENT = "Action"; | |
public static final String REGISTRY_ROOT = "Root"; |