https://www.unix.com/hp-ux/256104-after-using-line-breaks-particular-user-shell.html
// set to default values
stty sane
// change terminal control characters
stty erase "^h" intr "^c" kill "^u" susp "^z" eof "^d"
// see all values
stty -a
https://www.unix.com/hp-ux/256104-after-using-line-breaks-particular-user-shell.html
// set to default values
stty sane
// change terminal control characters
stty erase "^h" intr "^c" kill "^u" susp "^z" eof "^d"
// see all values
stty -a
protected String getCurrentMethodName()
{
return new Exception().getStackTrace()[1].getMethodName();
}
cat plugin_directory/plugin.properties
aboutText=blah blah\n\n\
Build Number:
cat build.xml
...
<target name="before-pde-build">
<echo file="${buildDirectory}/plugins/plug_in_name/plugin.properties" message=${env.BUILD_NUMBER}" append="true"/>
</target>