This file contains 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
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.codehaus.mojo</groupId> | |
<artifactId>exec-maven-plugin</artifactId> | |
<executions> | |
<execution> | |
<id>first-execution</id> | |
<phase>install</phase> | |
<goals> |
This file contains 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 | |
#Replace USERNAME1 etc with your user names on all computers | |
#in order to find the Fiji.app (or replace with Fiji app locations) | |
usernames= ( USERNAME1 USERNAME2 ) | |
FIJIPATH=/Applications/Fiji.app | |
for i in ${usernames[@]} | |
do |