適当な備忘録

日々のメモ程度に雑に書いていきます。

2019-12-01から1ヶ月間の記事一覧

archlinux iphone USBデザリングについて

iphoneのUSBデザリングでちょいと詰まったので備忘録 参考 iPhone テザリング - ArchWiki `Failed to connect to lockdownd service on the device.` · Issue #39 · libimobiledevice/ifuse · GitHub Arch Linux iPhone テザリング | Basic Werk 方法 instal…

How to add a user to a group in linux

show group # groups [user] group create # groupadd [group] add user to group # gpasswd -a [user] [group] show users $ cat /etc/passwd|sed -e 's/:.*//g' reset groups $ newgrp wireshark

awkで行頭のコメントを削除する。

ふとエディタがなにも使えない状況に陥り、どうしようと思ったのでメモ書き awkあればいける! ↓先頭の#を消す。 [gen@arch-wsl] $ cat test.txt # test [gen@arch-wsl] $ awk '{ $a = substr($0, 1); sub(/^#/,"",$a); print $a }' test.txt test