{
"status": "up"
}Note
Note
Tip
Tip
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
| # dd-wrt | |
| /etc/dnsmasq.conf | |
| /var/lib/misc/dnsmasq.leases | |
| /tmp/ipv6_client_info | |
| /tmp/ipv6_client_list | |
| /tmp/connect.log | |
| nvram show |
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
| JAVA_HOME=$(/usr/libexec/java_home -v 11) mvn clean install [-pl project] [-P profile] [-am] -DskipTests=true |
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 . -type d -maxdepth 1 -mindepth 1 | xargs -I{} bash -c 'echo; echo {}; cd {}; git fetch -p; cd -> /dev/null' | |
| git fetch -p; | |
| git switch master; git pull; | |
| git branch --merged master | egrep -v "master|develop|release" | xargs git branch -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
| ls -i | awk '{print $1}' | xargs -n1 find -inum | xargs rm | |
| ls -i | awk '{print $1}' | xargs -n1 find -delete -inum | |
| # 動作確認したい場合 | |
| ls -i | awk '{print $1}' | xargs -n1 find -inum | xargs -n1 -p rm | |
| # ls -i | awk '{print $1}' | xargs -n1 -p find -delete -inum |
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
| powershell -c 'start -verb runas $EDITOR $env:windir\system32\drivers\etc\hosts' |
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 files | |
| find /some/path -type f -print0 | xargs -0 chmod 644 | |
| # For directories | |
| find /some/path -type d -print0 | xargs -0 chmod 755 |
NewerOlder