$ apt update && apt install -y curl sudo xz-utils
$ bash << 'EOS'
NODE_VERSION=12.16.1
curl -Lo /tmp/node.tar.xz https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz
curl -Lo /tmp/yarn.tar.gz https://yarnpkg.com/latest.tar.gz
mkdir /tmp/node
Bashのエスケープシーケンス
Bash tips: Colors and formatting (ANSI/VT100 Control sequences) https://misc.flogisoft.com/bash/tip_colors_and_formatting
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
---1列目-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
exec ssh-agent tmux new-session 'ssh-add; exec $SHELL' |
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
/etc/sysctl.conf | |
net.ipv6.conf.all.disable_ipv6 = 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
: <<EOF_BAT | |
@ECHO OFF | |
REM *********************************************************** | |
REM busybox.exeとバッチファイルだけでWindowsでシェルスクリプトを実行する | |
REM *********************************************************** | |
REM 同じフォルダにbusybox.exeを入れておく | |
REM busybox.exe 入手先 | |
REM https://frippery.org/busybox | |
REM https://github.com/rmyorston/busybox-w32 | |
REM 参考 |