From 026729934fb6b12ccbc9d9d1f0561a2a34a5e14c Mon Sep 17 00:00:00 2001 From: Yoko Lau <51824837+ltctl@users.noreply.github.com> Date: Tue, 24 Mar 2020 19:46:33 +0800 Subject: [PATCH] Update bash.sh --- languages/bash.sh | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/languages/bash.sh b/languages/bash.sh index 780e98c..bf15427 100644 --- a/languages/bash.sh +++ b/languages/bash.sh @@ -67,7 +67,7 @@ clear # clears content on window (hide displayed lines) ls # lists your files in current directory, ls to print files in a specific directory ls -l # lists your files in 'long format', which contains the exact size of the file, who owns the file and who has the right to look at it, and when it was last modified -ls -a # lists all files, including hidden files (name beginning with '.') +ls -a # lists all files in 'long format', including hidden files (name beginning with '.') ln -s # creates symbolic link to file touch # creates or updates (edit) your file cat # prints file raw content (will not be interpreted) @@ -79,8 +79,11 @@ vim # opens a file in VIM (VI iMproved) text editor, w mv # moves a file to destination, behavior will change based on 'dest' type (dir: file is placed into dir; file: file will replace dest (tip: useful for renaming)) cp # copies a file rm # removes a file +find . -name # searches for a file or a directory in the current directory and all its sub-directories by its name diff # compares files, and shows where they differ wc # tells you how many lines, words and characters there are in a file. Use -lwc (lines, word, character) to ouput only 1 of those informations +sort # sorts the contents of a text file line by line in alphabetical order, use -n for numeric sort and -r for reversing order. +sort -t -k # sorts the contents on specific sort key field starting from 1, using the field separator t. chmod -options # lets you change the read, write, and execute permissions on your files (more infos: SUID, GUID) gzip # compresses files using gzip algorithm gunzip # uncompresses files compressed by gzip @@ -99,10 +102,15 @@ grep -r # search recursively for pattern in directory ############################################################################## -mkdir # makes a new directory -cd # changes to home -cd # changes directory -pwd # tells you where you currently are +mkdir # makes a new directory +rmdir # remove an empty directory +rmdir -rf # remove a non-empty directory +mv # rename a directory from to +cd # changes to home +cd .. # changes to the parent directory +cd # changes directory +cp -r # copy into including sub-directories +pwd # tells you where you currently are ############################################################################## @@ -153,6 +161,8 @@ echo $varname # checks a variable's value echo $$ # prints process ID of the current shell echo $! # prints process ID of the most recently invoked background job echo $? # displays the exit status of the last command +read # reads a string from the input and assigns it to a variable +let = # performs mathematical calculation using operators like +, -, *, /, % export VARNAME=value # defines an environment variable (will be available in subprocesses) array[0]=valA # how to define an array @@ -230,12 +240,14 @@ str1 == str2 # str1 matches str2 str1 != str2 # str1 does not match str2 str1 < str2 # str1 is less than str2 (alphabetically) str1 > str2 # str1 is greater than str2 (alphabetically) +str1 \> str2 # str1 is sorted after str2 +str1 \< str2 # str1 is sorted before str2 -n str1 # str1 is not null (has length greater than 0) -z str1 # str1 is null (has length 0) # FILES --a file # file exists +-a file # file exists or its compilation is successful -d file # file exists and is a directory -e file # file exists; same -a -f file # file exists and is a regular file (i.e., not a directory or other special type of file)