En
OpenBOR
PPSSPPSDL
Skyscraper
advmame
advmame.sh
amiberry
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
| used=$(df | grep "% /$" | awk '{print $5}' | sed 's/%//g') |
file /bin/* | awk -F":" '{print $2}' | sed 's/^[[:space:]]*//' | sed 's/[[:space:]]*$//' | sort | uniq -c | sort -k1nr | more
output example from coreelec:
CoreELEC:~ # file /bin/* | awk -F":" '{print $2}' | sed 's/^[[:space:]]*//' | sed 's/[[:space:]]*$//' | sort | uniq -c | sort -k1nr | more
138 ELF 32-bit LSB executable, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, for GNU/Linux 3.2.0, stripped
135 symbolic link to busybox
17 POSIX shell script, ASCII text executable
11 Bourne-Again shell script, ASCII text executable
4 ELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, for GNU/Linux 3.2.0, stripped
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
| #! /bin/bash | |
| # ########### | |
| # | |
| # put the file at any executable path, cd to the video path, and do the cmd below: | |
| # | |
| # cmd format: bilibili.sh filename [1] | |
| # | |
| # filename is the output name of the video/audio | |
| # if the optional arg is 1, an audio file will be extractd from the generated video file |
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
| #coding: utf-8 | |
| import requests | |
| import argparse | |
| import json | |
| # your account email | |
| EMAIL = '[email protected]' | |
| # your account api, get from the profile page | |
| APIKEY = 'c2547eb745079dac9320b638f5e225cf483cc5cfdda41' |
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
| #!/bin/bash | |
| list=" | |
| http://speedtest.newark.linode.com/100MB-newark.bin | |
| http://speedtest.atlanta.linode.com/100MB-atlanta.bin | |
| http://speedtest.dallas.linode.com/100MB-dallas.bin | |
| http://speedtest.fremont.linode.com/100MB-fremont.bin | |
| http://speedtest.toronto1.linode.com/100MB-toronto.bin | |
| http://speedtest.frankfurt.linode.com/100MB-frankfurt.bin | |
| http://speedtest.london.linode.com/100MB-london.bin |
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
| // By qiushan | |
| // Detail page: https://vps123.top/script-to-delete-table-column-on-hyperpolyglot.html | |
| // License: MIT | |
| // [http://hyperpolyglot.org] is a wonderfull website which provides contrast of programming languages. Sometimes the table contains languages that you don't care about, you can use this script to delete them, just modify the $columnscnt and $delcolumns vars, and run it from the console. | |
| // how many columns does the table have; | |
| var columnscnt = 5; | |
| // which columns do you what to delete; | |
| var delcolumns = [2, 5]; |
NewerOlder