{"id":25883186,"url":"https://github.com/maxlath/aliases","last_synced_at":"2026-02-13T21:14:09.747Z","repository":{"id":10411663,"uuid":"12568565","full_name":"maxlath/aliases","owner":"maxlath","description":"debian/ubuntu aliases of my own","archived":false,"fork":false,"pushed_at":"2013-11-15T23:41:35.000Z","size":240,"stargazers_count":0,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-05T19:38:42.982Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/maxlath.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-09-03T16:08:58.000Z","updated_at":"2021-09-17T10:18:10.000Z","dependencies_parsed_at":"2022-08-27T23:00:45.486Z","dependency_job_id":null,"html_url":"https://github.com/maxlath/aliases","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/maxlath/aliases","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxlath%2Faliases","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxlath%2Faliases/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxlath%2Faliases/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxlath%2Faliases/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/maxlath","download_url":"https://codeload.github.com/maxlath/aliases/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxlath%2Faliases/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29417781,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-13T06:24:03.484Z","status":"ssl_error","status_checked_at":"2026-02-13T06:23:12.830Z","response_time":78,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-03-02T16:31:54.871Z","updated_at":"2026-02-13T21:14:09.732Z","avatar_url":"https://github.com/maxlath.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"Aliases Junky\n=======\n\ndebian/ubuntu aliases of my own\n\n\nI put all those here with different purposes in mind:\n- ease the exchange with my linux wonderful world co-explorators (Grüßen Nitneuk \u0026 Stefen)\n- get eventual tips, feedbacks and improvements suggestions\n- get my hand on bash, git \u0026 github (see 'Help for Git \u0026 Github' hereafter)\n\n\nHow To\n==========\n\n####Easy version\n- find the aliases that fit your need in the text files (sorted by thematic)\n- open the file ~/.bash_aliases for edition and paste the alias (create one if none)\n- save\n- reload the aliases with the command . ~/.bashrc (reload aliases globally: ~/.bash_aliases is just for your session)\n\n####Junky version\n (generate the ~/.bash_aliases file from multiple text files)\n- create a folder dedicated to your aliases\n- create there a text file 'loc-dir' to define the path you will use as variable\n\t-\u003e set 'aldir' (for alias-directory) to the path of the alias folder you just created: aldir=~/MyAliases\n\t(make sure you don't use a '/' at the end)\n- you will generate your '~/.bash_aliases' file with the 'genal' function (cf AliasManagement)\n\t-\u003e make sure to also set a 'exclude_from_aliases' variable: mine look like exclude_from_aliases=\"readme|cat_src|old\"\n\t\t(I exclude the source of this readme, an intermediary result of the genal function and my old aliases I don't use but don't want to erase yet)\n- first generation requires to launch the command directly in the shell, it can look as this (mind to edit the 'exclude_from_aliases' variable depending of the file you already created that are ):\n\t```aldir=`pwd`\n\texclude_from_aliases=\"\"\n\tcd $aldir/src/;\n\techo -e '\\n\\e[0;32 Starting to generate aliases'\n  \tfor filename in !($exclude_from_aliases); do\n    \techo -e \"\\n\\n\\n#$filename\\n#===============================\\n\"\n    \tcat \"$filename\"\n  \tdone \u003e ~/.bash_aliases;\n  \techo -e '\\n\\e[0;32 bash_aliases re-generated'\n\t}```\n- As for the Easy version, you need to reload the aliases with the command . ~/.bashrc (reload aliases globally: ~/.bash_aliases is just for your session)\n\t\n######NB: Problems with Github MarkDown\nI could find a way to nicely escape bash commentaries '#' which Github MarkDown turned into hearders, I thus replaced them with backslash (cf genalreadme). Beware not to copy commentaries without changing back from '\\' to '#' !\n\n######Manipulate Aliases\nsee 'Alias management'\nfunctionalities includes:\n- edit the aliases file ('edal')\n- generate the alias file from different source text file ('genal')\n- reload aliases ('real')\n- add an alias to aliases from command line ('addal')\n- search in existing aliases ('catag')\n\n######Installation required\n- Some commands require to install packages (nethogs, xrandr...): time to fire your 'agi'!\n\n######Help for bash syntax\nhttp://www.tldp.org/LDP/abs/html/refcards.html\n\n######Help for Git \u0026 Github\nIf some want to use this repo for pedagogic purpose too, you are very welcome!\nHere is a great tutorial http://rogerdudler.github.io/git-guide/\n\n\nTable of Contents\n=================\n[Alias management-include](https://github.com/maxlath/aliases/blob/master/src/Alias%20management-include)\n\n[Apps and processes-include](https://github.com/maxlath/aliases/blob/master/src/Apps%20and%20processes-include)\n\n[APT-GET-DOOMSDAY-MACHINE-include](https://github.com/maxlath/aliases/blob/master/src/APT-GET-DOOMSDAY-MACHINE-include)\n\n[Bittorrent Sync-include](https://github.com/maxlath/aliases/blob/master/src/Bittorrent%20Sync-include)\n\n[Clipboard-include](https://github.com/maxlath/aliases/blob/master/src/Clipboard-include)\n\n[Directories navigation-include](https://github.com/maxlath/aliases/blob/master/src/Directories%20navigation-include)\n\n[Git-include](https://github.com/maxlath/aliases/blob/master/src/Git-include)\n\n[Other utilities-include](https://github.com/maxlath/aliases/blob/master/src/Other%20utilities-include)\n\n[PulseAudio-include](https://github.com/maxlath/aliases/blob/master/src/PulseAudio-include)\n\n[Screens-include](https://github.com/maxlath/aliases/blob/master/src/Screens-include)\n\n[Shell-include](https://github.com/maxlath/aliases/blob/master/src/Shell-include)\n\n[Simple server-include](https://github.com/maxlath/aliases/blob/master/src/Simple%20server-include)\n\n[Smartphone sync tools-include](https://github.com/maxlath/aliases/blob/master/src/Smartphone%20sync%20tools-include)\n\n[System-include](https://github.com/maxlath/aliases/blob/master/src/System-include)\n\n[VirtualMachine-include](https://github.com/maxlath/aliases/blob/master/src/VirtualMachine-include)\n\n[Web utilities-include](https://github.com/maxlath/aliases/blob/master/src/Web%20utilities-include)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxlath%2Faliases","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaxlath%2Faliases","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxlath%2Faliases/lists"}