-
-
Save thcipriani/1d574b4b1e19b1ee6fcc3d6a2e77c7aa to your computer and use it in GitHub 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
Some basic info about people set their shell's HISTSIZE variable | |
HISTSIZE stats | |
count 473.00 | |
mean 21141872008171.58 | |
std 459800479621288.31 | |
min -1.00 | |
25% 1000.00 | |
50% 10000.00 | |
75% 65000.00 | |
max 10000000000000000.00 | |
Name: HISTSIZE, dtype: object | |
HISTSIZE=-1 | |
count 12/473 | |
percent 2.536997885835095% | |
HISTSIZE stats with -1's removed | |
count 461.00 | |
mean 21692202732896.23 | |
std 465746422178186.00 | |
min 0.00 | |
25% 1000.00 | |
50% 10000.00 | |
75% 100000.00 | |
max 10000000000000000.00 | |
Name: HISTSIZE, dtype: object |
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
#!/usr/bin/env python3 | |
""" | |
Some terrible code to search for "language:shell HISTSIZE=" on GitHub | |
Copyright 2024 Tyler Cipriani <tyler@tylercipriani.com> | |
License GPL-3.0+ | |
""" | |
import base64 | |
import os | |
import requests | |
import re | |
import sys | |
import time | |
import datetime | |
SESSION = requests.Session() | |
GITHUB_TOKEN = os.environ['GITHUB_TOKEN'] | |
def search_code_request(url: str) -> requests.Response: | |
headers = { | |
'Accept': 'application/vnd.github+json', | |
'Authorization': f'Bearer {GITHUB_TOKEN}', | |
} | |
response = SESSION.get(url, headers=headers) | |
return response.headers, response.json() | |
def search_code(query: str) -> dict: | |
next_url = 'https://api.github.com/search/code?q=' + query | |
while True: | |
headers, response = search_code_request(next_url) | |
link = headers.get('Link') | |
if 'items' not in response: | |
if headers.get('X-RateLimit-Remaining') == '0': | |
current_time = datetime.datetime.now().strftime('%s') | |
sleep_time = int(headers['X-RateLimit-Reset']) - int(current_time) + 10 | |
if sleep_time < 0: | |
sleep_time = 60 | |
print('Rate limit exceeded', file=sys.stderr) | |
print(f'Wait for {sleep_time} seconds', file=sys.stderr) | |
time.sleep(sleep_time) | |
continue | |
else: | |
break | |
next_url = None | |
for item in response['items']: | |
yield item | |
if link: | |
for part in link.split(','): | |
url, rel = part.split(';') | |
url = url.strip().strip('<>') | |
rel = rel.strip() | |
if rel == 'rel="next"' and url: | |
next_url = url | |
break | |
if not next_url: | |
break | |
def download(url: str) -> str: | |
headers = { | |
'Accept': 'application/vnd.github+json' | |
} | |
response = SESSION.get(url, headers=headers) | |
return base64.b64decode(response.json()['content']).decode('utf-8') | |
def main(): | |
query = 'HISTSIZE=+language:Shell' | |
regex = re.compile(r'\bHISTSIZE=(?P<value>-?\d+)') | |
with open('histsize.csv', 'w') as f: | |
f.write('repository,path,HISTSIZE\n') | |
print('repository,path,HISTSIZE') | |
for item in search_code(query): | |
code = download(item['git_url']) | |
for line in code.split('\n'): | |
if 'HISTSIZE' not in line: | |
continue | |
match = regex.match(line) | |
if match: | |
print(f"{item['repository']['full_name']},{item['path']},{match.group('value')}") | |
f.write(f"{item['repository']['full_name']},{item['path']},{match.group('value')}\n") | |
break | |
if __name__ == '__main__': | |
main() |
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
repository | path | HISTSIZE | |
---|---|---|---|
vlang/vinix | base-files/etc/bash/bashrc | -1 | |
SerenityOS/serenity | Ports/zsh/zshrc | 1000 | |
Andy-Python-Programmer/aero | base-files/.bashrc | -1 | |
nikitavoloboev/config | archive/zsh/options.zsh | 10000 | |
github-linguist/linguist | samples/Shell/filenames/kshrc | 20000 | |
cockroachdb/cockroach | build/packer/teamcity-agent.sh | 0 | |
webmin/webmin | xterm/rc/.zshrc | 1000 | |
linuxeye/lnmp | include/init_Debian.sh | 10000 | |
linuxeye/lnmp | include/init_RHEL.sh | 10000 | |
christoomey/dotfiles | zsh/configs/history.zsh | 10000 | |
anishathalye/dotfiles | zsh/settings.zsh | 1048576 | |
hlissner/dotfiles | config/zsh/config.zsh | 100000 | |
asottile/scratch | .bashrc | -1 | |
matthewmccullough/dotfiles | zprofile | 5000 | |
changs/slimzsh | history.zsh | 100000 | |
devopsprodigy/isolate | shared/bash.sh | 10000 | |
cyoung/stratux | image/spindle/wheezy-stage2 | 1000 | |
devopsprodigy/isolate | shared/zsh.sh | 10000 | |
yutkat/dotfiles | .config/zsh/rc/base.zsh | 10000 | |
OI-wiki/OI-wiki | .bashrc | 1000 | |
openhab/openhabian | includes/generic/bash.bashrc | 1000 | |
hukl/dotfiles | .zsh/lib/history.zsh | 10000 | |
ipfire/ipfire-2.x | config/etc/profile | 1000 | |
CongducPham/LowCostLoRaGw | gw_full_latest/scripts/bashrc.sh | 1000 | |
ChristianChiarulli/machfiles | zsh/.config/zsh/exports.zsh | 1000000 | |
arildjensen/cis-puppet | files/el6/etc/profile | 1000 | |
grml/grml-etc-core | etc/minimal-shellrc | 500 | |
mrzool/bash-sensible | sensible.bash | 500000 | |
atomantic/dotfiles | homedir/.zprofile | 5000 | |
LukeSmithxyz/voidrice | .config/zsh/.zshrc | 10000000 | |
Ljohn001/ljohn_ops | shells/ljohn.sh | 10000 | |
yandex/yandex-tank | docker/files/bashrc | 8000 | |
mazino3/vinix-os | base-files/etc/bash/bashrc | -1 | |
github-linguist/linguist | samples/Shell/filenames/.kshrc | 20000 | |
noqcks/generated | samples/Shell/filenames/kshrc | 20000 | |
noqcks/generated | samples/Shell/filenames/.kshrc | 20000 | |
oneinstack/oneinstack | include/init_Debian.sh | 10000 | |
NotMings/open-oneinstack | include/init_Debian.sh | 10000 | |
sshadowrocket/ois | include/init_Debian.sh | 10000 | |
oneinstack/oneinstack | include/init_RHEL.sh | 10000 | |
NotMings/open-oneinstack | include/init_RHEL.sh | 10000 | |
sshadowrocket/ois | include/init_RHEL.sh | 10000 | |
victornguyen/dotfiles | zsh/configs/history.zsh | 10000 | |
alekscp/dotfiles | zsh/configs/history.zsh | 10000 | |
satyakisikdar/cfg-files | .zsh/settings.zsh | 1048576 | |
jaredatandi/dotfiles | zsh/settings.zsh | 1048576 | |
situozhang/dotfiles | zsh/settings.zsh | 1048576 | |
mikeaaaaaa/dotfile | .zsh/settings.zsh | 1048576 | |
jamesmstone/dotfiles-nix | config/zsh/config.zsh | 100000 | |
Spatenheinz/dotfiles | config/zsh/config.zsh | 100000 | |
Mageas/temp_nix | config/zsh/config.zsh | 100000 | |
yael333/nix-dotfiles | config/zsh/config.zsh | 100000 | |
ralacerda/dotfiles | zsh/history.zsh | 100000 | |
Linuus/dotfiles | zsh/history.zsh | 100000 | |
biturbo/stratux-flarm | image/spindle/wheezy-stage2 | 1000 | |
stratux-fork/stratux | image/spindle/wheezy-stage2 | 1000 | |
weirdindiankid/stratux | image/spindle/wheezy-stage2 | 1000 | |
jamez70/flarm | image/spindle/wheezy-stage2 | 1000 | |
mstormi/storm.house | includes/generic/bash.bashrc | 1000 | |
fliiiix/dotfiles | config/zsh/lib/history.zsh | 10000 | |
chrkl/dotfiles | .zsh/lib/history.zsh | 10000 | |
HeEAaD/dotfiles | .zsh/lib/history.zsh | 10000 | |
buscape/dotfiles | .zsh/lib/history.zsh | 10000 | |
didi110296/lora_rpi_gw_firmware | scripts/bashrc.sh | 1000 | |
chipsi007/LowCostLoRaGw | gw_full_latest/scripts/bashrc.sh | 1000 | |
esdxfvgijhg/cod | xx/03/lora/x-shell/bashrc.sh | 1000 | |
esdxfvgijhg/cod | xx/03/lora/x-shell/x-lora-bis/lora_gateway/scripts/bashrc.sh | 1000 | |
RyanSquared/dotfiles-legacy | .grml-etc-core/etc/minimal-shellrc | 500 | |
adamyonk/dotfiles | .config/bash/bash-sensible.bash | 500000 | |
eliasdorneles/dotfiles | sensible.bash | 500000 | |
bronzehedwick/dotfiles | bash/.sensible.bash | 500000 | |
sakithb/dotfiles | .bashrc.sensible | 500000 | |
thedaviddias/dotfiles | homedir/.zprofile | 5000 | |
c3-amitsalunke/.dotfiles | homedir/.zprofile | 5000 | |
mikewisian/dotfiles_old | homedir/.zprofile | 5000 | |
dhayab/dotfiles | homedir/.zprofile | 5000 | |
osama-su/.dotfiles | .config/zsh/.zshrc | 10000000 | |
ewof/rice-legacy | .config/zsh/.zshrc | 10000000 | |
GerhardGustavsen/dotfiles | .config/zsh/.zshrc | 10000000 | |
Jocomol/jocorice | dot_config/zsh/.zshrc | 10000000 | |
muniao/SuperBigData | linux-shell/src/main/java/Linux脚本/shells/ljohn.sh | 10000 | |
BigDukee/unixProgramming | part04/shells/ljohn.sh | 10000 | |
devcrocod/Benchmark | docker/files/bashrc | 8000 | |
mudan/profile | .zshrc | 0 | |
meribold/dotfiles | home/bashrc | -1 | |
pradyunsg/dotfiles | src/shell/.zsh/2-history.symlink.zsh | 10000 | |
qoomon/my-zsh | modules/history.zsh | 10000 | |
wafflepie/dotfiles | topics/history/config.post.zsh | 100000 | |
megalithic/bits-and-bobs | zsh/config.zsh | 10000 | |
lehmacdj/.dotfiles | zsh/settings.zsh | 1000000 | |
fernandoacorreia/homefiles | shell/bashrc.sh | 1000 | |
RagnarokOS/src | bin/oksh/.kshrc | 1000 | |
myersg86/dotfiles | .bashrc | 1000000 | |
Squirrel-IT/config | openbsd/_kshrc.in | 5000 | |
ketiko/dotfiles | home/dot_bashrc | 100000 | |
alipio/dotfiles | .config/bashrc.d/env | 10000 | |
avicennax/dotfiles | dotfiles/bash_profile | 3000 | |
philbucher/bash_scripts | bash_aliases_common.sh | 5000 | |
afgomez/dotfiles | .zshrc.d/03.history.zsh | 100000 | |
teekennedy/dotfiles | dotfiles/.zsh/zshrc/50_history.zsh | 500000 | |
JohnHammond/archlinux | bashrc | 1000 | |
wolverian/dot | zshenv | 99999999 | |
archlinux/infrastructure | roles/common/files/zshrc | 1000 | |
Keshav13142/.dotfiles | linux/zsh/config/options.zsh | 10000000 | |
mkayyash/configs | general_bashrc.sh | 20000 | |
Cornelius-Figgle/dotfiles | config/bash/config.sh | 1000 | |
rossning92/MyScripts | settings/zsh/my-zsh-config.sh | 10000 | |
CLNRMN/dotfiles | .bashrc | -1 | |
alkeryn/dotfiles | .zshrc | 999999999 | |
justinmk/config | .bashrc | 99999 | |
bgpat/isucon10q-private | home/isucon/.bashrc.backup | 1000 | |
crispyricepc/dotfiles | config/zsh/1-newuser-install.zsh | 1000 | |
uKaigo/dotfiles | .config/zsh/conf.d/02-config.zsh | 10000 | |
rvalente/dotfiles | .zshrc | 50000 | |
Oconnt/opkit | sh/mry_host.sh | 1000 | |
446163/work | .zshrc | 1000 | |
Haron-Prime/My_config_files | .bashrc | 1000 | |
rynffoll/dotfiles | bashrc | 1000 | |
vintersnow/dotfiles | config/zsh/zsh.d.sync/normal_option.zsh | 1000000 | |
Paradiesstaub/gnu_stow_template | zshrc/.zshrc | 10000 | |
keegancsmith/dotfiles | .zshrc | 20000 | |
ed-barberis/devops-2.0 | provisioners/scripts/common/users/user-root-bashrc.sh | 16384 | |
Sophed/dotfiles | .zshrc | 1000 | |
Payadel/servess | Shells/libs/user-add-restrict-docker.sh | 1000 | |
sp1ritCS/dotfiles | .config/zsh/settings.zsh | 1000 | |
alflanagan/featherweb-api | .zshrc.extra | 10000 | |
davidaurelio/dotfiles | .bash_profile | 130000 | |
JunichiIto/dotfiles | .zshrc | 100000 | |
josephscott/shell | .bashrc | 1000 | |
petermoser/configs | .zsh | 10000 | |
Chick2D/dotfiles | .zshrc | 10000 | |
ryuichi1208/dotfiles | tmp/mac/mini/zshrc | 100000 | |
bzf/dotfiles | zshrc | 20000 | |
corps/nix-machines | dotfiles/bashrc | 100000 | |
mk12/dotfiles | .bashrc | 10000 | |
rozza/dotfiles | bashrc | 10000 | |
ib-ruby/ib-container | bashrc | 1000 | |
issenn/zsh-config | .config/zsh/zshrc.ohmyzsh.zsh | 10000000 | |
tsho/osx_settings | zshrc.zsh | 1000000 | |
chadit/dotfiles | zsh/myzshrc.sh | 100000 | |
evesdropper/dotfiles | .zshrc | 100000 | |
dimpram/.dotfiles | .zshrc | 1000 | |
trompette/dotfiles | bashrc | 1000 | |
duvallj/dotfiles | .zshrc | 1000 | |
dari862/my_stuff | skel/.config/myshell/bash/bashrc.sh | 1000 | |
deadhead420/archlinux | config/dot-files/.bashrc | 1000 | |
rcdevtools/dotfiles | .yashrc | 1000 | |
wavebeem/dotfiles | zshrc | 10000 | |
inscapist/dotfiles | .config/zsh/.zshrc | 10000 | |
Aesthetikx/dotfiles | zshrc | 10000 | |
sbuss/dotfiles | bashrc | 1000 | |
NastuzziSamy/dotfiles | .zshrc | 1000 | |
ymotongpoo/dotfiles | .zshrc | 100000 | |
yannack/dotfiles | bash/.bashrc | 100000 | |
gyubeomim/lockdpwn | zet_cetera/0deprecated/backup_bashrc/bashrc_180321.sh | 1000 | |
TerminalWitchcraft/dotfiles | setup-my-env/defaults/bashrc | 1000 | |
leucos/dotfiles | files/bashrc | 1000 | |
12ants/kkkk | conf/bbbb.sh | 1000 | |
larsaars/linux-setup | .bashrc | 1000 | |
emliunix/home.conf | zshrc | 10000 | |
selrond/.dotfiles | .zshrc | 100000 | |
rasmusjuhl/dotfiles | .zshrc | 1000 | |
rhovelz/rhovelz_dotfiles | .zshrc | 50000 | |
abrandemuehl/dotfiles | .bashrc | 1000 | |
tirr-c/zsh-env-setup | zsh-env-setup.plugin.zsh | 10000 | |
ptaranti/RaspberryPiCluster | pi2/home/pi/.bashrc | 1000 | |
smeetrs/dotfiles | zsh/zshrc | 10000 | |
twjhlee/dotfiles | bashrc | 10000 | |
tmuki/dotfiles | zsh/zshrc | 1000 | |
orokasan/dotfiles | .zshrc | 10000 | |
USTC-vlab/labstrap | rootfs/root/.bashrc | 1000 | |
kurain/kurain-dotfiles | .zshrc | 100000 | |
rtorr/dotfiles | .zshrc | 1000 | |
a8ksh4/paper-pi-handheld | .bashrc | 1000 | |
AlanSherman/dotfiles | .bashrc | 1000 | |
memoriasIT/Dotfiles | bashrc/.bashrc | 1000 | |
SebastianWesolowski/WorkSpace | iTerm/.zshrc | 1000 | |
matianfu/winsun_mininas_v1 | template/cefdk_initrd/root/etc/profile | 1000 | |
julo15/unix-config | .zshrc | 2000 | |
the-robot/offsec | awkward/bean_backup/bean/.bashrc | 1000 | |
desertSniper87/dotfiles | .zshrc | 1000 | |
cbuehrle1/dotfiles | zsh/config.zsh | 5000 | |
blackbracken/gearbox | platforms/archlinux/dotfiles/.zshrc | 4096 | |
TommasoAmici/dotfiles | zshrc | 99999 | |
jfraboni/simple-node-app | .bashrc | 1000 | |
acidburn0zzz/archlinux-infrastructure | roles/common/files/zshrc | 1000 | |
Foxboron/infrastructure | roles/common/files/zshrc | 1000 | |
SantiagoTorres/arch-infrastructure | roles/common/files/zshrc | 1000 | |
coderobe/archlinux-infrastructure | roles/common/files/zshrc | 1000 | |
ptaranti/RaspberryPiCluster | pi3/home/pi/.bashrc | 1000 | |
rxyhn/yoru | misc/home/.config/zsh/options.zsh | 10000 | |
bestswifter/macbootstrap | zsh-config/.zshrc | 10000000 | |
lloeki/dotfiles | zsh/history | 100000 | |
minamarkham/dotfiles | dot_zshrc | 100000 | |
rushiagr/myutils | aliases/bashrc.sh | 100000 | |
it-novum/ansible-role-systemtools | files/.profile | 500000 | |
aunsira/dotfiles | zsh/config | 20000 | |
seanbreckenridge/dotfiles | .config/zsh/env_config.zsh | 10000000000000000 | |
aliostad/deep-learning-lang-detection | data/train/bash/05c5e62ab5392e22c6bc1498914d4cfba043cd97.bashrc | 1000 | |
andrewpthorp/dotfiles | zsh/config.zsh | 10000 | |
joshtriplett/home | .bashrc | -1 | |
wikimedia/operations-puppet | modules/admin/files/home/mobrovac/.bashrc | 1000 | |
chimay/configuration | shell/zsh/bareqaz-zshrc | 1000 | |
KDr2/DS-III | lib/bash/bash-basic.rc | 1000 | |
davidnortonjr/dotfiles | .zprofile | 10000000 | |
ElectricRCAircraftGuy/eRCaGuy_dotfiles | home/.bashrc | 1000 | |
lundjordan/dotfiles | zsh/config.zsh | 65000 | |
EdenEast/nyx | config/.config/shell/bash/003-bash-settings.bash | 10000 | |
rhinosys/sas-meta | src/etc/profile | 1000 | |
exklamationmark/dotfiles | data/.bash_extra | 9999999 | |
greynolds123/EP2021-4 | zabbix/history/files/history.sh | 5000 | |
maxestorr/.dotfiles | bash/.bashrc | -1 | |
struuuuggle/dotfiles | zsh/Linux/.zshenv | 100000 | |
johnmcdowall/unicursal | zsh/.config/zsh/zsh-exports | 1000000 | |
dstengele/dotfiles | .zsh/53-history.zsh | 10000 | |
truschival/dotfiles | dot.zshrc | 5000 | |
claytron/dotfiles | .zshrc | 50000 | |
arthurljones/dotfiles | mail_bashrc.sh | 1000 | |
rv178/.dotfiles | .home/.zshrc | 1000000 | |
SeafProject/dotfiles | _zshrc.sh | 10000 | |
gadmyth/unix-config | sh-extends/histories.sh | 500 | |
angelofallars/dotfiles | .zshrc | 1000 | |
YOwatari/dotfiles | symlinks/.zsh/base.rc.zsh | 10000 | |
bennett39/config | bash/bashrc.sh | 1000 | |
romgrk/dotfiles | bash/init.sh | 1000 | |
chrispoole643/etc | zsh/.zshrc-common-head | 3000 | |
liulei01/DRBox | bashrc | 1000 | |
Nebu1eto/dotfiles | zsh/.zshrc | 999999999 | |
NikiforovAll/dotbot | zsh/settings.zsh | 1048576 | |
displague/displague-dotfiles | .bashrc.d/26_history.sh | 100000 | |
ganadist/scripts | .zsh.d/disabled/K10_zshopts | 10000 | |
essentialsofparallelcomputing/Chapter3 | image/home/.zshrc | 1000 | |
wiredhikari/i3_dotfiles | zshrc | 1000 | |
kingkongmok/kingkongmok.github.com | linux/.bashrc | -1 | |
TheHushedCasket/downcp | files/etcprofile | 1000 | |
dustinvtran/dotfiles | .zshrc | 1000 | |
overmighty/dotfiles | .zshrc | 50000 | |
matsubo/matsu-shell-setting | .zshenv | 10000 | |
borisbabic/dotfiles | zsh-antigen/.zshrc | 10000000 | |
alexarbogast/dotfiles | bash/bash_profile.sh | 1000 | |
arumakan1727/dotfiles | homedir/.config/zsh/nonlazy/base.zsh | 10000 | |
DarkPark/dotfiles | .bashrc | 50000 | |
analogdevicesinc/production-tests | m1k/home/pi/.bashrc | 1000 | |
craigerl/digipi | home/pi/.bashrc | 1000 | |
jayeff/dotfiles | zshrc | 100000 | |
shans10/dotfiles | .bashrc | 1000 | |
secryst/data-arabic-pointing | .bashrc | 1000 | |
dminca/dotfiles | dotfiles/.bashrc | 1000 | |
jnbek/dotfiles | _zsh/01_zshenv | 10000 | |
BUILDS-/Config-File-Cache | frozencemetery/.zshrc | 100000000000 | |
diegoferigo/dotfiles | .bashrc.d/history | 5000 | |
NullVoxPopuli/dotfiles | home/.bashrc | 1000 | |
mbgeorge48/dotfiles | shell/zsh_extras | 50000 | |
naggie/dotfiles | include/.env.sh | 5000 | |
mattkelly/dotfiles | zsh/.zshrc | 1000000 | |
flyingjamus/dotfiles | zsh/settings.zsh | 10000 | |
max-f/dotfiles | zsh/.zsh-custom/1settings.zsh | 10000 | |
e788b1/e1 | .bashrc | 100000 | |
mkmaslov/archsetup | resources/user.zshrc | 50000 | |
strange/dotfiles | .zshrc | 10000 | |
yuzuemon/dotfiles | .zshrc | 10000000 | |
tiwakawa/dotfiles | .zshrc | 10000 | |
kartorias1/Hyprland-dotfiles | .zshrc | 1000 | |
paulh002/sdrberry | install/.bashrc | 1000 | |
junjiemars/kit | raspbian/.bashrc | 1000 | |
dragonxlwang/misc | dotfiles/lib/.profile_wangxl | 130000 | |
moopet/dotfiles | bash/.bashrc | 1000 | |
junjiemars/kit | ubuntu/.bashrc | 1000 | |
mrkcee/river-dotfiles | zsh/.zshrc | 20000 | |
KK-Konbannha/dotfiles | .config/zsh/sync/option.zsh | 10000 | |
shockey/dotfiles | .zshrc | 999999999 | |
fekir/dotfiles | shell/history.zshrc | 10000 | |
supersonicclay/dot-files | .zshrc | 1000 | |
ajisaac/scripts | .zshrc | 1000 | |
hjwylde/dotfiles | packages/zsh/.zsh/50-history.zsh | 1000 | |
grimpy/homeconfig | homeconfig/.zsh.d/S10_zshopts | 10000 | |
robbiemu/home | .bashrc | 2000 | |
raas-dev/configent | dotfiles/.zshrc | 100000 | |
everestps/nick | .bashrc | 1000 | |
thexhr/config | .bashrc | 3000 | |
catlair/code-setting | zsh/env.zsh | 10000 | |
eshel/dotfiles | old_bashrc | 1000 | |
charlie39/crice | .config/bash/.bashrc | 10000 | |
cpriyank/dotfiles | zsh/.zshrc | 16384 | |
meqif/configs | .zshrc | 800 | |
rabbitear/configs | volunteer/.zshrc | 1000 | |
lugray/dotfiles | .bash_profile | 1000000 | |
pfhayes/dotfiles | .zshrc | 5000000 | |
fidelab/dotfiles | .bashrc | 1000 | |
Agrover112/Unix | .bashrc | 1000 | |
takadev15/dotfiles | .zshrc | 1000 | |
gakkie/settings | .zshrc | 100000 | |
rafaelgallani/dotfiles | .zshrc.pre-oh-my-zsh | 10000 | |
BlackSnufkin/PwnBox-Kali | Resources/.bashrc | 1000 | |
willhug/dotfiles | dotfiles/zshrc | 130000 | |
derbetakevin/dotfiles | configurations/zsh/.zshrc | 1000000 | |
JonathanSiemering/dotfiles | .zshrc | 1000 | |
burrscurr/dotfiles | .zshrc | 10000 | |
Domeee/dotfiles | .zshrc | 1000 | |
carterscode/dotfiles | .zshrc | 500000 | |
helpitsagain/dotfiles | .zshrc | 1000 | |
JADarius/arch-setup | .zshrc | 2000 | |
xusiai/dotfiles | .config/zsh/options.zsh | 10000 | |
VelvetMuffin/dotfiles | .config/zsh/options.zsh | 10000 | |
rxmmah/dotfiles | .config/zsh/options.zsh | 10000 | |
szymon-gniado/dotfiles | .config/zsh/options.zsh | 10000 | |
BareqAZ/BZSH | .zshrc | 1000 | |
greynolds123/centos7.prod.localdomain | environments/qa/modules/history/files/history.sh | 5000 | |
greynolds123/centos7.prod.localdomain | environments/dev/modules/history/files/history.sh | 5000 | |
greynolds123/centos7.prod.localdomain | environments/stage/modules/history/files/history.sh | 5000 | |
greynolds123/centos7.prod.localdomain | environments/test/modules/history/files/history.sh | 5000 | |
essentialsofparallelcomputing/Chapter7 | image/home/.zshrc | 1000 | |
essentialsofparallelcomputing/Chapter11 | image/home/.zshrc | 1000 | |
essentialsofparallelcomputing/Chapter13 | image/home/.zshrc | 1000 | |
maurodelazeri/remote-desktop | image/home/.zshrc | 1000 | |
361way/safe | SysEnhance/init_config_backup/profile | 1000 | |
openos365/openos365-10031-alpine-3-17-docker | ci/1030-docker-run/etc/profile | 1000 | |
openos365/openos365-10007-centos-7-docker | ci/1030-docker-run/etc/profile | 1000 | |
openos365/openos365-10041-deepinlinux-v20-docker | ci/1030-docker-run/etc/profile | 1000 | |
paulh002/sdrberry | install-tools/.bashrc | 1000 | |
fightezo/CarPoolMaster | .bashrc | 1000 | |
Lamontsm/Koding | .bashrc | 1000 | |
OlegCx/-GO-10M-LOC-koding-master | koding-master/go/src/koding/kites/kloud/provisioner/bash/bashrc | 1000 | |
Axatchaudhary/dotfiles | zsh/.zshrc | 16384 | |
streaksu/Gloire | base-files/home/user/.bashrc | -1 | |
msaio/cfg_zsh | install.sh | 999999999 | |
a-barinov/liteqube | 1.Base/default/debian-core/root/.profile | 256 | |
Sorebit/dotfiles | zshrc | 1000 | |
raehik/dotfiles | shell/.config/shell/zshrc | 10000 | |
nahk/vagrant-simplehosting | resources/common/zshrc | 1000 | |
jdigger/boxen | modules/people/files/jdigger/zprofile | 5000 | |
thedanielfactor/dotfiles | zsh/config.zsh | 10000 | |
manicminer/dotfiles | zshrc | 9000000 | |
SuicideCatt/configs | zshrc | 50000 | |
powerman/flazsh | bundle/oh-my-zsh/lib/history.zsh | 50000 | |
kyrex23/dotfiles | shell/zsh/zshrc | 1000 | |
hoshiya4522/dotfiles | .config/zsh/settings.zsh | 10000000 | |
k-a-u-s-h-i-k/settings | zshrc | 10000000 | |
magnet-cl/magnetizer-fabric | fabfile/templates/zshrc | 10000000 | |
luqasn/dotfiles | zshrc | 10000 | |
kevincjackson/Config | zsh/zshrc | 10000 | |
Caprico1/Docker-Botnets | teamtnt_oct922/ar.sh | 0 | |
iBug/etc | rosemary.bashrc | 20000 | |
rytmrt/dotfiles | zsh/zshrc | 1000 | |
pabloabur/dotfiles | zsh/zshrc | 10000 | |
kshitijaucharmal/minimal-qtile | zshrc | 50000 | |
brayden-marshall/dotfiles | zsh/history.zsh | 50000 | |
frequency403/dotfiles | zshrc | 1000 | |
piouPiouM/dotfiles | zsh/.config/zsh/plugins/environment/init.zsh | 50000 | |
matthiaskrgr/dotfiles | zshrc | 1000000 | |
MitMaro/dotprofile | .bash_includes.d/500-bash-settings | 100000 | |
s-takoor/emacs-org-docs | podman/shell/zshrc | 100 | |
gszr/dotfiles | dots/zshrc | 10000 | |
meqif/dotfiles | zsh/zshrc | 800 | |
MrAwesome/dotfiles | zsh/dot-zsh/general.zsh | 10000 | |
mnabila/dotfiles | zsh-zinit/.zshrc | 10000 | |
jackcenter/bash_shortcuts | scripts/default.sh | 1000 | |
iolpltuisciaoln/envup | zshenv | 10000000 | |
bonnefoa/dotfiles | dot_config/zsh/conf/conf.plugin.zsh | 50000 | |
HEPData/hepdata-explore | deployment/roles/base/files/my_bashrc.sh | 10000 | |
resure/dotfiles | zshrc | 999999999 | |
Spikatrix/dotfiles | Arch-rice/zshrc | 2000 | |
mattgibb/dotfiles | zshrc | 10000 | |
nwiizo/dotfiles | zsh/zshrc | 50000 | |
gojun077/jun-dotfiles | bash/bashrc_ubuntu | 10000 | |
fortmarek/dotfiles | zsh/config.zsh | 10000 | |
rusty1s/dotfiles | new/.zshrc | 10000000 | |
hd929/dotfiles | zsh/.config/zsh/exports.zsh | 1000000 | |
brightpuddle/dots | .zshenv | 5000 | |
jfear/dotfiles2 | bash/settings.bash | 1048576 | |
juliangrosshauser/dotfiles | zshrc | 10000 | |
ozogxyz/.dotfiles | ksh/.kshrc | 10000 | |
tklauser/dotfiles | .zsh/zshrc/40_history | 1000000 | |
yosida95/dotfiles | zsh/00config.zsh | 10000 | |
DarqSied/dotfiles | dotfiles/.config/zsh/zsh-exports | 1000000 | |
compnski/zsh | plugins/jason/jason.plugin.zsh | 10000000 | |
vlucas/dotfiles-old | zsh/history.zsh | 10000 | |
benkim0414/dotfiles | .zsh/configs/history.zsh | 10000 | |
efournier92/Notes | Terminal/DotFiles/.zsh/env/common | 1000 | |
rhanak/dotfiles-old | zsh/zshrc | 4096 | |
justenwalker/vcsh-home | .zsh/zshrc.d/10-history.zsh | 1000 | |
jtrull/dotfiles | zsh/zshrc | 3000 | |
jerolan/dotfiles | zsh/config.zsh | 10000 | |
shinya-takagi/dotfiles | .zsh/sync/options.zsh | 100000 | |
daichikuwa0618/dotfiles | zsh/zprofile | 6000000 | |
cdata/setup | bash/rc_interactive | 10000 | |
aman333nolawz/dotfiles | .zshrc | 1000 | |
mikeschenkel/dotfiles | zsh/zshrc | 10000 | |
sweglord227/dot_config | zsh/zshrc | 1000 | |
Caprico1/Docker-Botnets | TeamTNT_Sugar_daddy/cmd/k31.sh | 0 | |
cehoffman/dotfiles | zsh/config | 100000 | |
mitsu9/dotfiles | zsh/zshrc | 1000000 | |
klauserber/code-server-k8s | bashrc.sh | 1000 | |
billyevans/bootstrap | zshrc | 100000000 | |
alainlebret/odl | dotfiles/zshrc | 2000 | |
timstott/dotfiles | zsh/zshrc | 100000 | |
bheckel/dotfiles | _bashrc | 10000 | |
fjmalass/DotFiles | zsh/.config/zsh/.zshenv | 10000 | |
westeezy/dotfiles | zsh/config.zsh | 10000 | |
kremalicious/dotfiles | zshrc | 50000 | |
MikiyaShibuya/dotfiles | shell/zshrc | 100000 | |
nathanielng/server_setup | aws/ec2_user_data_pcluster.sh | 20000 | |
benmezger/dotfiles | dot_zsh/history.zsh | 10000 | |
okamotonr/dotfiles | zshrc | 10000 | |
estebank/environment | bashrc.sh | 1000 | |
goodboy/dotrc | dotrc/zsh/zshrc | 10000 | |
yakca/dotfiles | zsh/zshrc | 100000 | |
robbieg8s/etc | zsh/zshrc | 1000 | |
davidgatti/my-development-setup | 02_Configurations/04_Zsh_instead_of_Bash/zshrc | 1000 | |
dany-fedorov/chezmoi-dotfiles | dot_bashrc.d/40.history.bashrc | -1 | |
TomoyukiSugiyama/dotfiles | zsh/.terminal.zsh | 100000 | |
Horgix/dotfiles | .zsh/history.zsh | 100000 | |
CiscoDevNet/AppD-Cloud-Kickstart | provisioners/scripts/common/users/user-root-bashrc.sh | 16384 | |
joeoe/dotfiles | dot_bashrc | 1000 | |
jm2dev/workstation-provisioning | roles/archlinux/files/zshrc | 10000 | |
nivpgir/dotfiles | interactive-bash-session.conf.d/history.sh | 1000000 | |
oxonium0215/dotfiles | dot_config/zsh/nonlazy.zsh | 100000 | |
charlespascoe/dotfiles | zshrc | 10000 | |
Coornail/coornails_dotfiles | .zshrc | 100000 | |
lyricat/conf | .zshrc | 1000 | |
psrb/dotfiles | zsh/zshrc | 1000000 | |
braoult/Tools | config/home/bashrc.root | 5000 | |
ljrk0/config | zsh/zshrc | 10000 | |
CogStack/iCAT | icat/.zshrc | 10000000 | |
typesAreSpaces/zsh.config | .oh-my-zsh/lib/history.zsh | 50000 | |
typesAreSpaces/debianDotFiles | .oh-my-zsh/lib/history.zsh | 50000 | |
typesAreSpaces/manjaroDotFiles | .oh-my-zsh/lib/history.zsh | 50000 | |
li0nel/zsh | .oh-my-zsh/lib/history.zsh | 50000 | |
Caprico1/Docker-Botnets | TeamTNT_Sugar_daddy/cmd/Setup-IRC_Bot.sh | 0 | |
GitKlip/dotfiles | dot_zsh/history.zsh | 10000 | |
bbarthec/dotfiles | home/dot_zsh/history.zsh | 10000 | |
Horgix/salt-states | users/files/zsh/history.zsh | 100000 | |
learnbyexample/scripting_course | .bashrc | 5000 | |
dharmx/dharmx | config/_shell/zsh/opts.zsh | 10000 | |
nonamescm/dotfiles | .zshrc-opts | 10000 | |
kanashimia/nixos-config | profiles/basic/zsh/zshrc.sh | 10000 | |
wikimedia/operations-puppet | modules/admin/files/home/fabfur/.bashrc | 20000 | |
andreiglingeanu/dotfiles | zsh/config.sh | 10000 | |
volution/z-run | sources/embedded/bash/shell_rc.bash | 16384 | |
data-pup/my-config | dotfiles/zshrc.d/history-settings.zsh | 1000 | |
nichobi/dotfiles | zsh/zshrc.d/history.zsh | 10000 | |
rayhanadev/dotfiles | .config/zsh/options.zsh | 10000 | |
dylanpinn/dotfiles | home/dot_bashrc.d/history.bash | 1000000 | |
swlkr/dotfiles | zprofile | 1000000 | |
christianvozar/dotfiles | zsh/history.zsh | 10000000 | |
murilobsd/dotfiles | .kshrc | 20000 | |
adityaramesh/dotfiles | .zprofile | 10000 | |
jdost/configs | shells/zsh/settings/02-history.zsh | 10000 | |
mikeabrahamsen/dotfiles | zsh/history.zsh | 10000 | |
lattwood/dotfiles | zsh.d/00-options.zsh | 500000 | |
diesal11/.dotfiles | zsh/config.zsh | 10000 | |
whitehax0r/ArchLinux-PS4 | .zshrc | 1000 | |
gaqzi/zshrc | lib/history-navigation.zsh | 10000 | |
samuliasmala/dotfiles | .bashrc | -1 | |
708u/dotfiles | zsh/conf.zsh | 100000 | |
cpea2506/dotfiles | .config/zsh/options.zsh | 10000 | |
keito4/config | .zsh/configs/history.zsh | 100000 | |
hideoka/dotfiles | .zsh/setopt.zsh | 10000 | |
alejandrogarciasalas/dotfiles | zsh/history.zsh | 50000 | |
simondell/dotfiles | zsh/profile.zsh | 3000 | |
eliperkins/dotfiles | zsh/config.zsh | 10000 | |
pancernik/dotfiles | zsh/tpl/env.zsh | 10000 | |
jaapie/dotfiles | _bashrc | 100000 | |
fabiospampinato/termux-env | zsh/.zshrc | 10000 | |
Caprico1/Docker-Botnets | tnt_mangletmpuser_fcminer/bash.sh | 0 | |
sota1235/dotfiles | zsh/zshrc.zsh | 10000 | |
Thomasvdam/dotfiles | zsh/zsh_scripts.symlink/config.zsh | 10000 | |
jsonpoindexter/dotfiles | zsh/settings.zsh | 1048576 | |
MihailoIsakov/dotfiles | dotfiles/.profile | 100000 | |
megalithic/dotfiles | config/zsh/lib/opts.zsh | 100000 | |
locutus3009/dotfiles | bashrc.sh | 1000 | |
kalkomey/dotfiles | zsh/config.zsh | 5000 | |
ckc-org/dotfiles | terminal/startup.sh | 10000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment