User Tools

Site Tools

tools:bash:customization

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
tools:bash:customization [2024/06/04 00:13] – [Invoked as interactive login shell] Humphrey Boa-Garttools:bash:customization [2025/01/04 03:40] (current) Humphrey Boa-Gart
Line 1: Line 1:
-{{wst>tagout}} 
 // This article is **Part 6** in a [[tools:bash|series of cheat-sheets]] on the command line shell, **bash**. ([[tools:bash:files archives|Previous Page]]) // // This article is **Part 6** in a [[tools:bash|series of cheat-sheets]] on the command line shell, **bash**. ([[tools:bash:files archives|Previous Page]]) //
  
 ====== Bash: Customization Basics ====== ====== Bash: Customization Basics ======
  
-The real power of bash is in its potential for limitless customization. When a bash shell is started, it goes down a list of predefined paths, looking for customization files. Depending on your operating system, it is likely that 99% of what you will need to do can be accomplished in **.bash_aliases** or **.bashrc**, which are located in the top-level of your user directory.+The real power of bash is in its potential for limitless customization. When a bash shell is started, it goes down a list of predefined paths, looking for customization files. Depending on your operating system, it is likely that 99% of what you will need to do can be accomplished in **.bash_aliases**, which is located in the top-level of your user directory
 + 
 +**.bashrc** and **.bash_profile** will take edits as well, but this is generally not advisable. Some operating systems have things mixed around, but by default most of them will have comments in the headings of these files explaining how they are arranged on your machine.
  
 ===== Invocation Methods ===== ===== Invocation Methods =====
Line 14: Line 15:
 (ex: SSH, SU) (ex: SSH, SU)
  
-  - **/etc/profile** //(global settings)// +  - **/etc/profile** //(global configuration)// 
-    -  **/etc/profile.d/** //(global settings)// +    -  **/etc/profile.d/** //(directory for global configuration modules)// 
-  - **/etc/bashrc** //(global settings)// +  - **/etc/bashrc** //(more global settings)// 
-  - **~/.bash_profile** //(user-only)// +  - **~/.bash_profile** //(user configuration)// 
-    - **~/.bashrc** //(user-only)// +    - **~/.bashrc** //(more user configuration)// 
-  - **~/.bash_logout** //(user-only, upon logout)//+    **~/.bash_aliases** //(user aliases file)// 
 +  - **~/.bash_logout** //(performed on user logout)//
  
 ==== Invoked as interactive non-login shell ==== ==== Invoked as interactive non-login shell ====
Line 25: Line 27:
 (ex: within X window manager) (ex: within X window manager)
  
-  - ~/.bashrc+  - **~/.bashrc** 
 +  - **~/.bash_aliases**
  
 ==== Invoked non-interactively ==== ==== Invoked non-interactively ====
Line 31: Line 34:
 (ex: scripts) (ex: scripts)
  
-  - Defined by BASH_ENV+  - Defined by ''BASH_ENV''
  
-===== Basics =====+===== Aliases =====
  
-###### `$ echo $PATH` +As you start to use bash more often, you will find yourself using specific combinations of commands and flags to accomplish basic tasks. You can drastically cut the amount of typing you will do by setting **aliases**, which are just pseudo-commands that refer to other commands. These are the simplest customizations to make to bash.
-See directories bash looks for scripts in.+
  
-===== Notes =====+For example, lets look at the ''ls'' command. The default output of ls is very bare-bones, and you have to type something like ''ls -lhAF'' to get a more detailed view. To make it so typing ''ls'' by itself gives you an easy-to-read detail view, add the following line to your **.bash_aliases** file:
  
-  * User specific functions should go in user\'s .bashrc +  ls='ls -lhAF --color=auto'
-  * Global functions should be individual files in /etc/profile.d/+
  
-===== Aliases =====+Aliases do not have to be permanent, either. To set that same alias to only work for the current shell session, you would run:
  
-###### `$ alias -p` +  $ alias ls=\'ls -lhAF --color=auto\'
-See list of active aliases.+
  
-###### `$ alias li=\'ls -li\'+To unset that alias, you would run:
-Create alias for li for current shell process only.+
  
-###### `$ unalias` +  $ unalias ls 
-For unsetting aliases.+   
 +You can also unset all aliases for the current shell session with: 
 + 
 +  $ unalias -a 
 + 
 +To see a list of active aliases, run: 
 + 
 +  $ alias -p 
 + 
 +===== More Simple Tricks ===== 
 + 
 +You can set all sorts of things up in your aliases file. The following are just a few tweaks you can make: 
 + 
 +==== Custom Hostnames ==== 
 + 
 +You can tweak the prompt, aka the string that appears before $ in your terminal. (Usually something like **[user@host]$**) 
 + 
 +If you want to restyle the prompt, you will need to set it to the **$PS1** variable. Here is one example with custom green and blue color codes, which you can copy/paste to your aliases file and use right away: 
 + 
 +  PS1='\[\033[01;32m\]\u@\h\[\033[00m\] \[\033[01;34m\]\w\[\033[00m\] \[\033[01;32m\]\$\[\033[00m\] ' 
 + 
 +Here is a separate <wrap em>red version</wrap> of the same prompt, which you can add to the aliases file for a root user or superuser, so you can more easily tell at a glance when you are in an account with escalated privs: 
 + 
 +  PS1='\[\033[01;31m\]\u@\h\[\033[00m\] \[\033[01;34m\]\w\[\033[00m\] \[\033[01;31m\]\$\[\033[00m\] ' 
 + 
 +Be careful setting the **$PS1** variable, as you can very easily make your shell unusable if you set it the wrong way! 
 + 
 +//(See 'ANSI Escape Codes' at the bottom of this page for more color options.)// 
 + 
 +==== Harden umask ==== 
 + 
 +By default your **umask** is probably set up to give read access to things that do not need it by default. To make it so all new files/folders you create are chmodded to 600/700, add the following line to your aliases file: 
 + 
 +  umask 0077 
 + 
 +//(See [[tools:bash:users-permissions#umask|Part 4: Users and Permissions]] for more info.)//
  
 ===== Environment Variables ===== ===== Environment Variables =====
 +
 +Just as in any programming language, bash uses **variables**. A variable in bash can contain a number, a character, or a string of characters.
 +
 +You have no need to declare a variable, as just assigning a value to its reference will create it.
 +
 +==== $PATH ====
 +
 +The most important variable you will deal with, is the **$PATH** variable, which specifies the directories that bash will look for executable files. (So you can type ''appname'' instead of ''/path/to/appname'' into your shell to run the program.) To figure out where your $PATH is, run:
 +
 +  $ echo $PATH
 +
 +This will output something like:
 +
 +  /home/user/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
 +  
 +This above line shows that bash will look in your personal **~/.local/bin** directory, as well as a list of common locations for globally-accessible binaries. Your system may have other locations appended here as well for things like games, [[tools:flatpak|Flatpak]] or [[tools:flatpak#snap|Snap]].
 +
 +To enable bash to run a custom application (such as a freshly downloaded [[tools:appimage|AppImage]] file) without having to type out the whole directory it is located in, you should place the file into your personal **~/.local/bin** directory. Or, you could put a symlink into that directory like so:
 +
 +  $ ln -s /path/to/the.appimage ~/.local/bin/commandname
 +
 +With ''commandname'' being whatever you want to type out to open that AppImage file in your shell or launcher.
 +
 +You could also put the file or symlink in **/usr/local/bin/** or **/usr/bin/** to make it accessible to other users on the system.
  
 ==== Getting Variable Info ==== ==== Getting Variable Info ====
  
-###### `$ env` +See list of global variables:
-See list of global variables.+
  
-###### `printenv` +  env 
-Same as above, but with less available option flags.+   
 +Same as above, but with less available option flags:
  
-###### `set` +  printenv
-See full list of global and local variables.+
  
-###### `$ declare` +See full list of global and local variables:
-Another long list of environment variables.+
  
-###### `printenv HOME` +  set
-See value for global variable HOME.+
  
-###### `$ echo $HOME` +Another long list of environment variables:
-Same as above.+
  
-###### `ls $HOME` +  declare 
-Use global variable HOME as part of another command.+ 
 +See value for global variable HOME: 
 + 
 +  printenv HOME 
 + 
 +Same as above: 
 + 
 +  $ echo $HOME 
 + 
 +Use global variable HOME as part of another command
 + 
 +  $ ls $HOME
  
 ==== Setting Variables ==== ==== Setting Variables ====
  
-###### `$ testvar=testvalue` +Set value of new local variable \'testvar\':
-Set value of new local variable \'testvar\'.+
  
-###### `$ testvar=\"A String Value\"+  $ testvar=testvalue
-Same as above, but for strings.+
  
-###### `$ testvar=$testvar:moredata` +Same as above, but for strings:
-Append more data to the end of existing variable.+
  
-###### `$ testvar=$(other | commands)` +  $ testvar=\"A String Value\"
-Assign variable the result of set of commands.+
  
-###### `$ export testvar` +Append more data to the end of existing variable:
-Export a local variable to the global environment.+
  
-###### `unset testvar` +  $ testvar=$testvar:moredata 
-Removes variable \'testvar\'.+ 
 +Assign variable the result of set of commands: 
 + 
 +  $ testvar=$(other | commands) 
 + 
 +Export a local variable to the global environment: 
 + 
 +  $ export testvar 
 + 
 +Removes variable \'testvar\'
 + 
 +  $ unset testvar
  
 ==== Variable Arrays ==== ==== Variable Arrays ====
  
-###### `$ vararray=(one two three four five)` +Define multiple values for variable as array:
-Define multiple values for variable as array.+
  
-###### `echo ${vararray[2]}` +  $ vararray=(one two three four five)
-Echo column three from vararray.+
  
-###### `$ echo ${vararray[*]}` +Echo column three from vararray:
-Echo entire array from vararray.+
  
-###### `$ vararray[2]=whatever` +  echo ${vararray[2]}
-Change the value of column three in vararray.+
  
-###### `unset vararry[2]` +Echo entire array from vararray: 
-Remove column 2 from vararray. Prior col 3 now new col 2.+ 
 +  echo ${vararray[*]} 
 + 
 +Change the value of column three in vararray: 
 + 
 +  $ vararray[2]=whatever 
 + 
 +Remove column 2 from vararray. Prior col 3 now new col 2
 + 
 +  $ unset vararry[2]
  
 ==== Variable Notes ==== ==== Variable Notes ====
Line 123: Line 199:
   * Export and unset, when used in a child shell, will not affect the parent shell.   * Export and unset, when used in a child shell, will not affect the parent shell.
   * Variable arrays start with an index value of zero, not one.   * Variable arrays start with an index value of zero, not one.
 +
 +===== ANSI Escape Codes =====
 +
 +When you set your custom hostname earlier in this article, you may have noticed the **\033[..m]** or **\033[..;..m]** blocks, which contain a semicolon-separated list of other numbers with an **m**. Those **"m"** numbers are **ANSI Escape Codes** which you can use to tweak the style of bash output. You have a range of codes available:
 +
 +==== Color Codes ====
 +
 +^ Color         ^ Foreground Code ^ Background Code ^
 +| Black         | 30              | 40              |
 +| Red           | 31              | 41              |
 +| Green         | 32              | 42              |
 +| Yellow        | 33              | 43              |
 +| Blue          | 34              | 44              |
 +| Magenta       | 35              | 45              |
 +| Cyan          | 36              | 46              |
 +| Light Gray    | 37              | 47              |
 +| Gray          | 90              | 100             |
 +| Light Red | 91        | 101             |
 +| Light Green | 92        | 102             |
 +| Light Yellow | 93        | 103             |
 +| Light Blue | 94        | 104             |
 +| Light Magenta | 95              | 105             |
 +| Light Cyan | 96        | 106             |
 +| White    | 97        | 107             |
 +
 +==== Other Codes ====
 +
 +^ Code ^ Description     ^
 +| 00   | Reset/Normal    |
 +| 01   | Bold text       |
 +| 02   | Faint text      |
 +| 03   | Italics         |
 +| 04   | Underlined text |
 +
 +
  
 ---- ----
  
 +  * Previous Page: [[tools:bash:files-archives|← Managing Files & Archives]]
   * [[tools:bash|Back to Index]]   * [[tools:bash|Back to Index]]
 +
 +
 +{{wst>cli}}
tools/bash/customization.1717460022.txt.gz · Last modified: 2024/08/06 05:54 (external edit)

Find this page online at: https://bestpoint.institute/tools/bash/customization