Assoc. Prof. Wiroon Sriborrirux, Founder of Advance Innovation Center (AIC) and Bangsaen Design House (BDH), Electrical Engineering Department, Faculty of Engineering, Burapha University
$ cat .profile
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
export USE_CCACHE=0
export CCACHE_DIR=~/ccache
export JAVA_HOME=/usr/lib/jvm/jdk
export ANT_HOME=~/android/ant
export ANDROID_SDK_HOME=~/android/sdk
export ANDROID_NDK_HOME=~/android/ndk
export AOSP_HOME=~/aosp
export PATH=$HOME/bin:$JAVA_HOME/bin:$ANT_HOME/bin:$ANDROID_SDK_HOME/tools:$ANDROID_SDK_HOME/platform-tools:$ANDROID_NDK_HOME:$PATH
$ cat .bashrc
# .bashrc
# User specific aliases and functions
HISTSIZE=1000
HISTFILESIZE=2000
# some more ls aliases
alias ll='ls -alF'
alias la='ls -A'
alias l='ls -CF'
alias rm='rm -i'
alias cp='cp -i'
alias mv='mv -i'
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
$ cat ~/.zshrc ─╯
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc.
# Initialization code that may require console input (password prompts, [y/n]
# confirmations, etc.) must go above this block; everything else may go below.
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
fi
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH
# Path to your oh-my-zsh installation.
export ZSH="$HOME/.oh-my-zsh"
# Set name of the theme to load --- if set to "random", it will
# load a random theme each time oh-my-zsh is loaded, in which case,
# to know which specific one was loaded, run: echo $RANDOM_THEME
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
#ZSH_THEME="robbyrussell"
ZSH_THEME="powerlevel10k/powerlevel10k"
# Set list of themes to pick from when loading at random
# Setting this variable when ZSH_THEME=random will cause zsh to load
# a theme from this variable instead of looking in $ZSH/themes/
# If set to an empty array, this variable will have no effect.
# ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" )
# Uncomment the following line to use case-sensitive completion.
# CASE_SENSITIVE="true"
# Uncomment the following line to use hyphen-insensitive completion.
# Case-sensitive completion must be off. _ and - will be interchangeable.
# HYPHEN_INSENSITIVE="true"
# Uncomment one of the following lines to change the auto-update behavior
# zstyle ':omz:update' mode disabled # disable automatic updates
# zstyle ':omz:update' mode auto # update automatically without asking
# zstyle ':omz:update' mode reminder # just remind me to update when it's time
# Uncomment the following line to change how often to auto-update (in days).
# zstyle ':omz:update' frequency 13
# Uncomment the following line if pasting URLs and other text is messed up.
# DISABLE_MAGIC_FUNCTIONS="true"
# Uncomment the following line to disable colors in ls.
# DISABLE_LS_COLORS="true"
# Uncomment the following line to disable auto-setting terminal title.
# DISABLE_AUTO_TITLE="true"
# Uncomment the following line to enable command auto-correction.
# ENABLE_CORRECTION="true"
# Uncomment the following line to display red dots whilst waiting for completion.
# You can also set it to another string to have that shown instead of the default red dots.
# e.g. COMPLETION_WAITING_DOTS="%F{yellow}waiting...%f"
# Caution: this setting can cause issues with multiline prompts in zsh < 5.7.1 (see #5765)
# COMPLETION_WAITING_DOTS="true"
# Uncomment the following line if you want to disable marking untracked files
# under VCS as dirty. This makes repository status check for large repositories
# much, much faster.
# DISABLE_UNTRACKED_FILES_DIRTY="true"
# Uncomment the following line if you want to change the command execution time
# stamp shown in the history command output.
# You can set one of the optional three formats:
# "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
# or set a custom format using the strftime function format specifications,
# see 'man strftime' for details.
# HIST_STAMPS="mm/dd/yyyy"
# Would you like to use another custom folder than $ZSH/custom?
# ZSH_CUSTOM=/path/to/new-custom-folder
# Which plugins would you like to load?
# Standard plugins can be found in $ZSH/plugins/
# Custom plugins may be added to $ZSH_CUSTOM/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse)
# Add wisely, as too many plugins slow down shell startup.
plugins=(common-aliases history git zsh-autosuggestions zsh-syntax-highlighting kubectl emoji encode64 dirhistory web-search macos sudo web-search copyfile copybuffer colored-man-pages command-not-found pip python rust brew docker golang history-substring-search iterm2)
eval $(/usr/bin/thefuck --alias fix)
eval $(/usr/bin/thefuck --alias wtf)
source $ZSH/oh-my-zsh.sh
# User configuration
# export MANPATH="/usr/local/man:$MANPATH"
# You may need to manually set your language environment
# export LANG=en_US.UTF-8
# Preferred editor for local and remote sessions
# if [[ -n $SSH_CONNECTION ]]; then
# export EDITOR='vim'
# else
# export EDITOR='mvim'
# fi
# Compilation flags
# export ARCHFLAGS="-arch x86_64"
# Set personal aliases, overriding those provided by oh-my-zsh libs,
# plugins, and themes. Aliases can be placed here, though oh-my-zsh
# users are encouraged to define aliases within the ZSH_CUSTOM folder.
# For a full list of active aliases, run `alias`.
#
# Example aliases
# alias zshconfig="mate ~/.zshrc"
# alias ohmyzsh="mate ~/.oh-my-zsh"
alias ..="cd .."
alias ..2="cd ../.."
alias ..3="cd ../../.."
alias ..4="cd ../../../.."
alias ..5="cd ../../../../.."
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
export FREERTOS_PATH=/opt/FreeRTOS_202212.00/
export PICO_SDK_PATH=/home/wiroon/bdh/freertos/rpi_pico/pico-sdk
export PATH="$PATH:/home/wiroon/bdh/freertos/rpi_pico/pico-toolbox/makepico"
$ echo $SHELL
/bin/bash
$ bash --version
GNU bash, version 4.1.5(1)-release (x86_64-pc-linux-gnu)
Copyright (C) 2009 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software; you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
$ echo Welcome to Embedded System
Welcome to Embedded System!
$ echo Welcome to Embedded System
Welcome to Embedded System!
$ echo 'Welcome to Embedded System'
Welcome to Embedded System!
$ echo I love Linux & Android
[1] 30136
I love Linux
Android: command not found
[1]+ Done echo I love Linux
[1]+ Done echo I love Linux
$ echo I love Linux \& Android
I love Linux & Android
$ echo 'I love Linux & Android'
I love Linux & Android
$ echo $SHELL
/bin/bash
$ echo -e " My Home directory is $HOME\n My username is $USER\n My current directory is $PWD"
My Home directory is /home/student
My username is student
My current directory is /home/student
$ echo $PPID
1927
$ ps -aux | grep 1927
student 1927 0.0 0.5 192052 11236 ? Sl 08:15 0:33 gnome-terminal
ตารางปรับแต่งการแสดง shell prompt
คำสั่ง
คำอธิบาย
PS1='\w $ '
แสดงไดเรกทอรีใน shell prompt
PS1='\h $ '
แสดงชื่อ hostname ใน shell prompt
PS1='\u $ '
แสดงชื่อ user ใน shell prompt
PS1='\t $ '
แสดงเวลา 24-hr time format ใน shell prompt
PS1='@ $ '
แสดงเวลา 12-hr time format ใน shell prompt
PS1='! $ '
แสดงหมายเลข history ใน shell prompt
PS1='EE $ '
แสดงชื่อที่กำหนด "EE" ใน shell prompt
รายการประวัติการใช้คำสั่ง (Command History)
คำสั่ง History
เป็นคำสั่งที่ผู้ใช้สามารถใช้แสดงคำสั่งย้อนหลังที่เคยได้เรียกใช้งาน จำนวนคำสั่งย้อนหลังจะถูกเก็บบันทึกไว้มากน้อยแค่ไหนขึ้นอยู่กับการตั้งค่าของตัวแประบบชื่อว่า HISTSIZE โดยรายละเอียดในการใช้คำสั่ง history มีดังนี้
ตารางรายละเอียดคำสั่ง history
คำสั่ง
คำอธิบาย
history
แสดงรายการคำสั่งย้อนหลังทั้งหมด
history N
แสดงรายการคำสั่งย้อนหลังจำนวน N คำสั่งล่าสุด
history -d N
ลบรายการคำสั่งลำดับที่ N
!!
เรียกคำสั่งย้อนหลังล่าสุด
!N
เรียกคำสั่งย้อนหลังลำดับที่ N
!-N
เรียกคำสั่งย้อนหลังกลับไปที่ N ตัว (!-1 มีค่าเท่ากับ !!)
เอกสารการใช้งานคำสั่งต่างๆเมื่อได้ติดตั้งโปรแกรมลงในระบบปฏิบัติการลีนุกซ์ เรียกว่า “Manual Pages” โดยสามารถเรียกดูผ่านคำสั่ง man ดังแสดงในรูปข้างล่าง
จากรูปข้างบนจะแสดงรายละเอียดของการใช้คำสั่ง man เพื่อที่จะเรียกดูเอกสารการใช้งานของคำสั่งสำหรับผู้ใช้ทั่วไป นอกจากนั้นยังสามารถดูเอกสารการใช้งานอื่นๆได้แก่
User commands (env, ls, echo, mkdir, tty)
System calls หรือ kernel functions (link, sethostname, mkdir)
$ whatis man
man(1) - format and display the on-line manual pages
man.conf(5) - configuration data for man
zshall(1) - the Z shell meta-man page
xml2man(1) - MPGL to mdoc (man page) translator
$ whatis mkdir
mkdir(1) - make directories
mkdir(2), mkdirat(2) - make a directory file
$ apropos mkdir
mkdir(1) - make directories
mkdir(2), mkdirat(2) - make a directory file