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
# just use mvn:describe -Ddetail and specify the name of the plugin, see example below | |
mvn help:describe -Dplugin=org.jacoco:jacoco-maven-plugin -Ddetail |
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
LOGGER.info("Classpath: '" + System.getProperty( "java.class.path" ) + "'" ); | |
LOGGER.info("Ext dirs: '" + System.getProperty( "java.ext.dirs" ) + "'" ); | |
LOGGER.info("Library path: '" + System.getProperty( "java.library.path" ) + "'" ); | |
LOGGER.info("Path separator: '" + System.getProperty( "path.separator" ) + "'" ); |
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
svn import https://svnserver/svn/repo_name -m "imported code into SVN" > ~/svn_import.log | |
# you need first to delete the metadata if you copied the code from another SVN repository |
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
sudo /etc/init.d/gdm restart |
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
# See info on processor (available, used and generic info) | |
cat /proc/cpuinfo | |
# See info on memory (available, used and generic info) | |
cat /proc/meminfo | |
# See info on HDD | |
df -h | |
# and of course kind of task manager |
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
rm -rf `find . -type d -name .svn` |
NewerOlder