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
// ==UserScript== | |
// @name YouTrack Page Title Rearranger for Tampermonkey | |
// @namespace YouTrackPageTitleRearranger | |
// @version 0.2 | |
// @description Swap the order of the issue summary and ID in page title, so ID is first (e.g., "Do Foo : FOO-123" --> "FOO-123 : Do Foo") | |
// @author brianhegeman, jamiekrug | |
// @match https://*.myjetbrains.com/youtrack/issue/* | |
// @grant none | |
// ==/UserScript== |
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 | |
set -e | |
# Defaults. | |
opt_ex_a_no_arg=0 | |
opt_ex_b_with_arg="default" | |
usage() | |
{ |