Exit Code | Description |
---|---|
0 | Success |
1 | Operation not permitted |
2 | No such file or directory |
3 | No such process |
4 | Interrupted system call |
5 | Input/output error |
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 | |
# ----------------------------------------------------------------------------- | |
# file: gnuplot-waveform.sh | |
# ----------------------------------------------------------------------------- | |
# | |
# author: turbulentie | |
# created: 2024-09-29 (09:48:25) | |
# updated: 2024-09-29 (17:02:03) | |
# revision: 1.0 |
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
@echo off | |
color 0B | |
mode con:cols=100 lines=20 | |
if not defined WEISAR_HOME set WEISAR_HOME=%~dp0 | |
start "" /realtime saracon.exe |
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
diff --git a/irc.pas b/irc.pas | |
index d83593a..a34603b 100644 | |
--- a/irc.pas | |
+++ b/irc.pas | |
@@ -159,6 +159,7 @@ procedure irc_AddINFO(const msgFormat: String; Args: array of const); overload; | |
function CommandAuthorized(const netname, channel, cmd: String): Boolean; | |
procedure irc_SendAddPre(const msgirc: String); | |
+procedure irc_SendAddPreStandard(const msgirc: String); | |
procedure irc_SendSPEEDSTATS(const msgirc: String); |
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
-- @description Generate CUE from project markers | |
-- @version 1.03 | |
-- @author MPL | |
-- @website https://forum.cockos.com/showthread.php?t=188335 | |
-- @changelog | |
-- + Add save file dialog (require JS ReaScript API Extension) | |
function main() | |
local scr_name = 'MPL Generate CUE from markers' |
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
-- @description Generate CUE from project markers | |
-- @version 1.07 | |
-- @author MPL | |
-- @website https://forum.cockos.com/showthread.php?t=188335 | |
-- @changelog | |
-- # 1-based markers count | |
-- # exculde number sign from marker name | |
function patternamtch(nameOut) return nameOut:gsub('%s',''):sub(0,1) end |
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
# ----------------------------------------------------------------------------- | |
# file: /etc/sysctl.conf > /etc/sysctl.d/99-sysctl.conf | |
# ----------------------------------------------------------------------------- | |
# | |
# updated: 2020/11/24 | |
# revision: 2 | |
# | |
# ----------------------------------------------------------------------------- | |
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
@echo off | |
::----------------------------------------------------------------------------- | |
:: Small batch script for converting RIFF WAV files to RF64 using ffmpeg | |
:: Location of ffmpeg binary should be sets globally or via PATH= env ^ | |
::----------------------------------------------------------------------------- | |
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: | |
:Loading |
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 | |
state=$(mocp -Q %state) | |
mocp_status() { | |
if [[ $state == "PLAY" ]]; then | |
state="Playing" | |
echo $state | |
elif [[ $state == "STOP" ]]; then | |
state="Stopped" |
NewerOlder