All Projects → gto76 → Standard Aliases

gto76 / Standard Aliases

Licence: mit
Attempt at defining a standard extension to Linux in form of Bash functions

Programming Languages

shell
77523 projects
bash
514 projects

Labels

Projects that are alternatives of or similar to Standard Aliases

Dotfiles
📃 My configuration files: Vim, Bash, JavaScript, tmux
Stars: ✭ 59 (-25.32%)
Mutual labels:  dotfiles
Aarkay Archived
AarKay is a language independent code generation framework. This project has been deprecated and is no longer maintained.
Stars: ✭ 69 (-12.66%)
Mutual labels:  dotfiles
.emacs.d
My emacs configuration
Stars: ✭ 76 (-3.8%)
Mutual labels:  dotfiles
Dotfiles
🏠
Stars: ✭ 60 (-24.05%)
Mutual labels:  dotfiles
Dotfiles
🏡 dotfiles
Stars: ✭ 66 (-16.46%)
Mutual labels:  dotfiles
Dotfile
Simple version control made for tracking single files
Stars: ✭ 71 (-10.13%)
Mutual labels:  dotfiles
Dotfiles
My dotfiles for my Arch-Install(s)
Stars: ✭ 59 (-25.32%)
Mutual labels:  dotfiles
Tmux Config
Tmux configuration, that supercharges your tmux to build cozy and cool terminal environment
Stars: ✭ 1,210 (+1431.65%)
Mutual labels:  dotfiles
Dotfiles
My personal configuration management system
Stars: ✭ 66 (-16.46%)
Mutual labels:  dotfiles
Dotfiles
What tools and plugins I use for web development?
Stars: ✭ 73 (-7.59%)
Mutual labels:  dotfiles
Bspwm Dotfiles
My Arch+Bspwm dotfiles
Stars: ✭ 61 (-22.78%)
Mutual labels:  dotfiles
Dotfiles
well-tailored NixOS & nix-darwin dotfiles
Stars: ✭ 63 (-20.25%)
Mutual labels:  dotfiles
.dots
💻 All of my dotfiles.
Stars: ✭ 72 (-8.86%)
Mutual labels:  dotfiles
Dotfiles
My Neovim + Tmux + Zsh dev setup
Stars: ✭ 60 (-24.05%)
Mutual labels:  dotfiles
Dotfiles
💻 These are my dotfiles. There are many like them, but these ones are mine.
Stars: ✭ 77 (-2.53%)
Mutual labels:  dotfiles
Dotfiles
🖥️ Automated Configuration, Preferences and Software Installation for macOS
Stars: ✭ 1,103 (+1296.2%)
Mutual labels:  dotfiles
Dotfiles
💻 Dotfiles for zsh, vim, emacs, tmux, and bash. Tested on mac os.
Stars: ✭ 70 (-11.39%)
Mutual labels:  dotfiles
Prompt So Fancy
Fancy terminal
Stars: ✭ 79 (+0%)
Mutual labels:  dotfiles
Pilgo
Configuration-based dotfiles manager
Stars: ✭ 78 (-1.27%)
Mutual labels:  dotfiles
.dotfiles
These are my .dotfiles. There are many like them, but these ones are mine.
Stars: ✭ 72 (-8.86%)
Mutual labels:  dotfiles

Standard Aliases

Make Linux more user friendly with this collection of Bash functions!

They provide commands that should be in Linux by default, or just abbreviations of commands that are provided, but are so commonly used that they deserve a shorter name and/or a set of configurable “sensible” options. When abbreviated command is executed, these predefined options are combined with the actual ones. Also most of the commands send their output to a pager if it doesn't fit the screen.

Collection was made for Debian based Linux (Ubuntu, Mint, ...) with Gnome desktop environment, but most commands will work on any system that has Bash shell and GNU Coreutils installed. For OS X see instructions.

There are currently 211 commands.

How to…

Install

$ git clone https://github.com/gto76/standard-aliases
$ cd standard-aliases
$ ./install

Uninstall

$ ./uninstall

Commands

Below is a list of most useful commands. If you want to check out the full list see LIST OF ALL COMMANDS.

Basic

Name Runs Description
p if [[ $# -eq 0 ... Print working directory or path to file.
l ___displayOutpu... List or display directory contents in pager using short listing format.
la __listOrDisplay... List or display all directory contents in pager using short listing format.
ll ___displayOutpu... List or display directory contents in pager using long listing format.
lla __listOrDisplay... List or display all directory contents in pager using long listing format.
e echo "[email protected]" Print text.
c cat "[email protected]" Print file contents.
m ___printOrDispl... Print or display text or file in pager.
v vim -p "[email protected]" Edit file with vim.

Directories

Name Runs Description
mk, md, mkdir1 mkdir --parents... Create directory and descend into.
cpdir cp --interactiv... Copy directories safely.
mvdir mv --interactiv... Move directories safely.
rmdir rm --interactiv... Delete directories safely.

Useful

Name Runs Description
extract if [ -z "$1" ];... Extract archive of any type.
o, openFile __runCommandInB... Open file with default app.
rb, runInBackground nohup "... Run command in background.
me, makeExecutable if [[ ! -f "$1"... Make file executable or create new bash or python script.
lo, locate1 locate "$1" </code>... Locate files on filesystem containing pattern in their names.
grr __printLinesCon... Print or display with pager numbered lines containing pattern in working and subdirectories.

Git

Name Runs Description
gs git -c color.st... Print short repository status.
gd git diff "[email protected]" Display changes between commits.
gl git log --graph... Display minimal log of commits.
commit git commit -am ... Commit changed and deleted files with message.
push git push "[email protected]" Push changes to remote repository.
pull git pull "[email protected]" Pull changes from remote repository.

Networking

Name Runs Description
pa, pingAll ping -c 1 -q $(... Ping gateway and google.
ip1 /sbin/ifconfig ... Print internal ip.
ip2 lynx --dump htt... Print external ip.
gateway route -n </code>... Print gateways ip.

Packages

Name Runs Description
ch, canhaz if [[ "$__stand... Install package.
ve, version # Check if pass... Print installed and available version of package or command.
wi, whatis1 # Checks if it ... Describe package or command or find available packages with part of name or command.

How To Rename Commands

  • Check if name is already taken by running: $ type <name>
  • Open .standardrc located in your home directory and add a new name in front of function's description.
  • Save and run: $ bash

Misc

  • Usually if function only makes Linux command easier to use, either by using a few “sensible” options, or just by sending output to a pager (if necessary), then it has the same name as command, but with number 1 appended at the end. Some examples are: ps1, mkdir1, pgrep1, tree1. Options for this commands are defined at the bottom of standardrc and can be customized by preference.

  • cp, mv, rm and rmdir are the only functions that override already existing commands. They are all run in interactive mode, meaning you get asked for conformation before any destructive operation. If you want to execute them without this prompting, use -f (force) option. rmdir also deletes the directory contents.

  • Command-line completions are automatically assigned to functions, depending on what commands they use.

  • Commands for accessing the “framework”:

    • ty COMMAND – prints function's body (short for type),
    • rc – opens configuration file (~/.standardrc) in default editor,
    • fu – opens standard_functions in default editor.

How It Works

After installation the “framework” consists of three files:

  • standard_functions: It contains Bash functions with long descriptive names. It is located in projects directory.

  • User's .standardrc file: Configuration file that specifies short names for functions. Also defines options that this functions use when they call specific commands. It is located in user's home directory.

  • Automatically generated aliases file: Contains functions with short names that call functions with longer names (as defined in configuration file). It also assigns appropriate command-line completions to the short functions. It is located in ~/.standard_aliases directory.

Every time new Bash shell is started, "framework" checks if any changes were made to the functions or configuration file and if so, it generates new aliases file.

How to run on OS X

  • Install Developer Tools by running:
make
  • Install Homebrew:
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
  • Install GNU Coreutils:
brew install coreutils
echo '. .bashrc' >> .profile
echo 'PATH="/usr/local/opt/coreutils/libexec/gnubin:$PATH"' >> ~/.bashrc
bash
  • Install other GNU programs (optional):
brew tap homebrew/dupes
brew install grep --with-default-names
brew install findutils --with-default-names
brew install tree
...
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].