& separates commands on a line.
&& executes this command only if previous command's errorlevel is 0.
|| (not used above) executes this command only if previous command's errorlevel is NOT 0
> output to a file
>> append output to a file
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 Sentry Copy On-Call Info | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description Add a button to copy on-call info from Sentry issue pages | |
| // @match https://people-center-inc.sentry.io/issues/* | |
| // @grant none | |
| // ==/UserScript== | |
| (function () { |
OlderNewer