Last active
October 29, 2019 05:53
-
-
Save shiro01/55010208ecbb656e895d27f238b5df06 to your computer and use it in GitHub Desktop.
雑多メモ
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
Windows | |
管理者でコマンドプロンプト | |
1.Win + R | |
2.ファイルを指定して実行を起動 | |
3.cmdを入力して | |
4.Ctrl + Shift + Enter | |
5.管理者でコマンドプロンプトが起動 | |
サクラエディタ | |
日付入力 | |
Alt + ; | |
時刻出力 | |
Alt + : | |
2進数を10進数にする。Excel関数 | |
=BIN2DEC(A1) | |
10進数を2進数にする。Excel関数 | |
=DEC2BIN(A1) | |
jp.sh | |
コマンド出力が文字化けする時にこのshellスクリプトによって文字化けを改善できる。 | |
``` | |
#!/bin/bash | |
$* |& iconv -f cp932 -t utf-8 | |
``` | |
以下のようなvagrant init で作成されるVagrantfileの先頭にある文字列について | |
``` | |
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
``` | |
https://superuser.com/questions/703803/bash-vi-mode-what-does-mode-ruby-vi-set-ft-ruby-mean | |
> エディタがファイルの内容を強調表示したりインデントしたりする方法に影響します。 | |
# Windows - Chocolatey | |
``` | |
> choco list -l | |
インストール(管理者) | |
> choco install <package> | |
アンインストール(管理者) | |
> choco uninstall <package> | |
アップグレード(管理者) | |
> chocolatey upgrade | |
chocolateyのアップグレード(管理者) | |
> choco upgrade chocolatey | |
全パッケージアップグレード(管理者) | |
> choco upgrade all | |
バージョン指定してアンインストール(管理者) | |
> choco uninstall <package> --version <version> | |
全パージョンアンインストール(管理者) | |
> choco uninstall nodejs.install -a | |
``` | |
コマンドリファレンス | |
https://github.com/chocolatey/choco/wiki/CommandsReference | |
# MSYS2 - packman | |
``` | |
ヘルプ | |
pacman -h | |
-Sオプションのヘルプ | |
pacman -S -h | |
パッケージのアップデート 事前にupdate-coreが必要? | |
pacman -Su | |
アップデート | |
> pacman -Syu | |
<pattern>でパッケージ検索 | |
pacman -Ss | |
pacman -Sl | grep <pattern> | |
インストール | |
pacman -S <pattern> | |
アンインストール | |
pacman -Rs <pattern> | |
パッケージグループの一覧表示 | |
pacman -Sg | |
インストール済みのパッケージ一覧表示 | |
pacman -Qqe | |
詳しい情報を表示 | |
pacman -Si <pattern> | |
使っていないキャッシュ削除 | |
pacman -Sc | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment