-
パッケージのインストール
sudo apt -y install wine64 winetricks
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
# Fossadog repo | |
deb https://debiandog.github.io/FossaDog/Packages-amd64/ ./ | |
deb http://jp.archive.ubuntu.com/ubuntu/ focal main restricted | |
# deb-src http://jp.archive.ubuntu.com/ubuntu/ focal main restricted | |
deb http://jp.archive.ubuntu.com/ubuntu/ focal-updates main restricted | |
# deb-src http://jp.archive.ubuntu.com/ubuntu/ focal-updates main restricted | |
deb http://jp.archive.ubuntu.com/ubuntu/ focal universe |
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
[Desktop Entry] | |
Categories=TextEditor;Development;IDE; | |
Type=Application | |
Terminal=false | |
Icon[ja]=/opt/idea/bin/idea.png | |
Name[ja]=IntelliJ IDEA | |
Exec=/opt/idea/bin/idea.sh | |
Icon=/opt/idea/bin/idea.png | |
# save as '/usr/share/applications/intellij-idea.desktop' |
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
<# | |
https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_prompts?view=powershell-7.2 | |
以下の内容を保存する。 | |
- Windows Powershell: `%USERPROFILE%\Documents\WindowsPowerShell\Profile.ps1` | |
- Powershell: `%USERPROFILE%\Documents\PowerShell\Profile.ps1` | |
- Visual Studio Code PowerShell Extension: `%USERPROFILE%\Documents\PowerShell\Microsoft.VSCode_profile.ps1` | |
#> |
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
PROMPT $P ($D $T)$_$G | |
```text | |
https://www.javadrive.jp/command/display/index2.html | |
$A & (アンパサンド) | |
$B | (パイプ) | |
$C ( (左かっこ) | |
$D 現在の日付 |
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
あ _ 名詞 | |
え \ 名詞 | |
え ¥ 名詞 | |
た | 名詞 | |
た | 名詞 |
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
あ _ 名詞 | |
あ _ 名詞 | |
え \ 名詞 | |
え ¥ 名詞 | |
た | 名詞 | |
た | 名詞 |
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
for i in {1..100}; do (TIMESTAMP_STR=`date +%Y%m%d_%H%M%S_%3N`; dd if=/dev/zero of="${TIMESTAMP_STR}_dummy_$i" bs=1M count=10;); done |
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
find <target_path> -type f -name <file_filter> -print 2>/dev/null | xargs file | grep "UTF-8 Unicode (with BOM) text" |
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
@echo off | |
for /f "tokens=*" %%x in ('ghq list -p ^| peco') do ( | |
cd %%x | |
break | |
) |