- 雨の日もあれば晴れの日もある。苦難の毎日1年間。続ける朝の新日課。いろんなみんなの心の拠り所。それでは歌っていただきましょう。ちぃささんで「人生いろいろ」
- お酒はすっきりハイボール、肴は甘いケーキがいい、決して無口じゃないけれど、歌ってみあせます舟歌を、それでは歌っていただきましょう。ちぃさで「舟歌」
- 酒と思い出酔いしれて、ひとり静かに飲む酒は、染みる曲を歌わせる。未練の涙は海に消え、船は海を進み行く。それでは歌っていただきましょう。ちぃさで「おもいで酒」
- 静かにそぼふる五月の雨は 素敵なあの人を思い出す 遠い昔のあの記憶 今も胸から離れない それでは歌っていただきましょう。ちぃさで「初恋」
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
#!/usr/bin/env perl | |
# カレントディレクトリのFLACファイルにタグをつける | |
# ファイル名の「XYY_NNNN」からタグを作成する | |
use strict; | |
use warnings; | |
use feature 'say'; | |
use File::Find; | |
use File::Basename; | |
my @filelist; |
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 -eu | |
do_cmd1() { | |
echo "cmd1" | |
} | |
do_cmd2() { | |
echo "cmd2" | |
} |
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 -eu | |
exec yt-dlp -f bestaudio --extract-audio --audio-format mp3 --audio-quality 0 --postprocessor-args '-af silenceremove=start_periods=1:start_duration=0.1:start_threshold=-70dB:start_silence=1' -o "%(upload_date)s - %(title)s.%(ext)s" "$1" |
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 -eu | |
# 現在のtmuxで新しいウィンドウを開き、cdコマンドでパスを移動するスクリプト | |
if [ -z "${TMUX:-}" ]; then | |
echo "tmuxを起動してください" | |
exit 1 | |
fi | |
export TMUX |
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 | |
# macOSとシェルスクリプトでダイアログを表示する | |
set -eu | |
osadialog() { | |
local text=$1 | |
set +e | |
osascript 2>&1 > /dev/null << EOS | |
tell me | |
activate |
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
#!/usr/bin/env perl | |
# Raspberry Pi5のいくつかの情報をvcgencmdから取得して見やすく表示するツール | |
# -------------------- | |
# 主な使い方 | |
# $ watch ./pi5-status.pl | |
# -------------------- | |
use strict; | |
use warnings; | |
use feature 'say'; |
NewerOlder