mirror of
https://github.com/cheat/cheat.git
synced 2025-09-01 01:28:30 +02:00
Compare commits
70 Commits
Author | SHA1 | Date | |
---|---|---|---|
aa1e12625e | |||
d09353bfca | |||
81e80c87a1 | |||
3d498d5ce7 | |||
d90d509702 | |||
b46f5b2c34 | |||
e2d63e7603 | |||
67f52f8317 | |||
67134b9240 | |||
c67adb1422 | |||
c2aa5e0148 | |||
332f0bd4ee | |||
b303bc0028 | |||
02f79ddd13 | |||
71680c6586 | |||
a240413eb9 | |||
cde64e3ea4 | |||
0b0bc441c6 | |||
2aa37432cb | |||
89de3705b0 | |||
d12718b8c4 | |||
900e083b99 | |||
837e0b5b71 | |||
30d2a77a6c | |||
1a8cdf84f4 | |||
181403e7ac | |||
2c10955690 | |||
4319b8e699 | |||
57dff86a44 | |||
aa4f6daf77 | |||
d7272c50c4 | |||
cdf573a725 | |||
eb6dfaad39 | |||
f8d2ce516e | |||
e5bf9146fe | |||
d6dc39c687 | |||
fb5ec798fa | |||
866eb68d64 | |||
e17f60e4d5 | |||
ed2ef113f0 | |||
432379d1e6 | |||
7089bef7cc | |||
aa57371819 | |||
921db35400 | |||
852db958a4 | |||
d58bbba1f8 | |||
e5ffcf65e4 | |||
d59ac66f1c | |||
f4f8592933 | |||
c540a600b2 | |||
9224216581 | |||
2da5c2b710 | |||
e468f8d0a0 | |||
cdee0e44cd | |||
efcd687070 | |||
ae309c7dc4 | |||
86ba22e7b8 | |||
2a6ec9cef5 | |||
2d59026b0d | |||
bcb0d71dd3 | |||
d1526ede16 | |||
374d381c00 | |||
1f3f9828c3 | |||
5d3f89924c | |||
74808845a5 | |||
517bf9599b | |||
7716827dfc | |||
c65fde1b3a | |||
bb3c4105cb | |||
aa9403d432 |
@ -1,7 +1,8 @@
|
||||
Contributing
|
||||
============
|
||||
If you would like to contribute cheetsheets or program functionality, please
|
||||
fork this repository, make your changes, and submit a pull request.
|
||||
fork this repository, make your changes, and submit a pull request against the
|
||||
`master` branch.
|
||||
|
||||
|
||||
## Python standards ##
|
||||
@ -22,4 +23,7 @@ tar -cvf /path/to/foo.tar /path/to/foo/
|
||||
tar -xzvf /path/to/foo.tgz
|
||||
```
|
||||
|
||||
If you are submitting a cheatsheet that contains side-by-side columns of text,
|
||||
please align the columns using spaces rather than tabs.
|
||||
|
||||
[PEP 8]: http://legacy.python.org/dev/peps/pep-0008/
|
||||
|
@ -42,7 +42,7 @@ from docopt import docopt
|
||||
|
||||
if __name__ == '__main__':
|
||||
# parse the command-line options
|
||||
options = docopt(__doc__, version='cheat 2.2.0')
|
||||
options = docopt(__doc__, version='cheat 2.2.3')
|
||||
|
||||
# list directories
|
||||
if options['--directories']:
|
||||
|
5
cheat/cheatsheets/alias
Normal file
5
cheat/cheatsheets/alias
Normal file
@ -0,0 +1,5 @@
|
||||
# Show a list of your current shell aliases
|
||||
alias
|
||||
|
||||
# Map `ll` to `ls -l` (Can be used per session or put inside a shell config file)
|
||||
alias ll='ls -l'
|
8
cheat/cheatsheets/cat
Normal file
8
cheat/cheatsheets/cat
Normal file
@ -0,0 +1,8 @@
|
||||
# Display the contents of a file
|
||||
cat /path/to/foo
|
||||
|
||||
# Display contents with line numbers
|
||||
cat -n /path/to/foo
|
||||
|
||||
# Display contents with line numbers (blank lines excluded)
|
||||
cat -b /path/to/foo
|
11
cheat/cheatsheets/cd
Normal file
11
cheat/cheatsheets/cd
Normal file
@ -0,0 +1,11 @@
|
||||
#Go to the given directory
|
||||
cd path/to/directory
|
||||
|
||||
#Go to home directory of current user
|
||||
cd
|
||||
|
||||
#Go up to the parent of the current directory
|
||||
cd ..
|
||||
|
||||
#Go to the previously chosen directory
|
||||
cd -
|
11
cheat/cheatsheets/cp
Normal file
11
cheat/cheatsheets/cp
Normal file
@ -0,0 +1,11 @@
|
||||
# Create a copy of a file
|
||||
cp ~/Desktop/foo.txt ~/Downloads/foo.txt
|
||||
|
||||
# Create a copy of a directory
|
||||
cp -r ~/Desktop/cruise_pics/ ~/Pictures/
|
||||
|
||||
# Create a copy but ask to overwrite if the destination file already exists
|
||||
cp -i ~/Desktop/foo.txt ~/Documents/foo.txt
|
||||
|
||||
# Create a backup file with date
|
||||
cp foo.txt{,."$(date +%Y%m%d-%H%M%S)"}
|
@ -16,7 +16,7 @@ SHELL=/bin/bash
|
||||
*/15 * * * * /home/user/command.sh
|
||||
|
||||
# every midnight
|
||||
* 0 * * * /home/user/command.sh
|
||||
0 0 * * * /home/user/command.sh
|
||||
|
||||
# every Saturday at 8:05 AM
|
||||
5 8 * * 6 /home/user/command.sh
|
||||
|
8
cheat/cheatsheets/cryptsetup
Normal file
8
cheat/cheatsheets/cryptsetup
Normal file
@ -0,0 +1,8 @@
|
||||
# open encrypted partition /dev/sdb1 (reachable at /dev/mapper/backup)
|
||||
cryptsetup open --type luks /dev/sdb1 backup
|
||||
|
||||
# open encrypted partition /dev/sdb1 using a keyfile (reachable at /dev/mapper/hdd)
|
||||
cryptsetup open --type luks --key-file hdd.key /dev/sdb1 hdd
|
||||
|
||||
# close luks container at /dev/mapper/hdd
|
||||
cryptsetup close hdd
|
@ -33,3 +33,9 @@ curl http://ifconfig.me/all/json
|
||||
|
||||
# Limit the rate of a download
|
||||
curl --limit-rate 1000B -O http://path.to.the/file
|
||||
|
||||
# Get your global IP
|
||||
curl httpbin.org/ip
|
||||
|
||||
# Get only the HTTP status code
|
||||
curl -o /dev/null -w '%{http_code}\n' -s -I URL
|
||||
|
@ -1,7 +1,7 @@
|
||||
# Read from {/dev/urandom} 2*512 Bytes and put it into {/tmp/test.txt}
|
||||
# Note: At the first iteration, we read 512 Bytes.
|
||||
# Note: At the second iteration, we read 512 Bytes.
|
||||
dd if=/dev/urandom of=/tmp/test.txt count=512 bs=2
|
||||
dd if=/dev/urandom of=/tmp/test.txt count=2 bs=512
|
||||
|
||||
# Watch the progress of 'dd'
|
||||
dd if=/dev/zero of=/dev/null bs=4KB &; export dd_pid=`pgrep '^dd'`; while [[ -d /proc/$dd_pid ]]; do kill -USR1 $dd_pid && sleep 1 && clear; done
|
||||
|
@ -1,3 +1,7 @@
|
||||
# Extract contents of a .deb file
|
||||
$ ar vx foo.deb # -> data.tar.gz
|
||||
$ tar xf data.tar.gz
|
||||
|
||||
# Install .deb file to a debian like system, e.g. ubuntu
|
||||
$ sudo dpkg -i foo.deb
|
||||
$ sudo apt-get install -f
|
||||
|
@ -1,12 +1,19 @@
|
||||
# Running emacs
|
||||
|
||||
GUI mode $ emacs
|
||||
Terminal mode $ emacs -nw
|
||||
|
||||
# Basic usage
|
||||
|
||||
Indent Select text then press TAB
|
||||
Cut CTRL-w
|
||||
Copy ALT-w
|
||||
Paste ("yank") CTRL-y
|
||||
Begin selection CTRL-SPACE
|
||||
Search/Find CTRL-s
|
||||
Replace ALT-% (ALT-SHIFT-5)
|
||||
Save CTRL-x CTRL-s
|
||||
Save as CTRL-x CTRL-w
|
||||
Load/Open CTRL-x CTRL-f
|
||||
Undo CTRL-x u
|
||||
Highlight all text CTRL-x h
|
||||
@ -15,7 +22,7 @@
|
||||
Font size bigger CTRL-x CTRL-+
|
||||
Font size smaller CTRL-x CTRL--
|
||||
|
||||
# Buffers
|
||||
# Buffers
|
||||
|
||||
Split screen vertically CTRL-x 2
|
||||
Split screen vertically with 5 row height CTRL-u 5 CTRL-x 2
|
||||
@ -23,11 +30,21 @@
|
||||
Split screen horizontally with 24 column width CTRL-u 24 CTRL-x 3
|
||||
Revert to single screen CTRL-x 1
|
||||
Hide the current screen CTRL-x 0
|
||||
Kill the current screen CTRL-x k
|
||||
Move to the next buffer CTRL-x O
|
||||
Move to the next screen CTRL-x o
|
||||
Kill the current buffer CTRL-x k
|
||||
Select a buffer CTRL-x b
|
||||
Run command in the scratch buffer CTRL-x CTRL-e
|
||||
|
||||
# Navigation ( backward / forward )
|
||||
|
||||
Character-wise CTRL-b , CTRL-f
|
||||
Word-wise ALT-b , ALT-f
|
||||
Line-wise CTRL-p , CTRL-n
|
||||
Sentence-wise ALT-a , ALT-e
|
||||
Paragraph-wise ALT-{ , ALT-}
|
||||
Function-wise CTRL-ALT-a , CTRL-ALT-e
|
||||
Line beginning / end CTRL-a , CTRL-e
|
||||
|
||||
# Other stuff
|
||||
|
||||
Open a shell ALT-x eshell
|
||||
|
5
cheat/cheatsheets/export
Normal file
5
cheat/cheatsheets/export
Normal file
@ -0,0 +1,5 @@
|
||||
# Calling export with no arguments will show current shell attributes
|
||||
export
|
||||
|
||||
# Create new environment variable
|
||||
export VARNAME="value"
|
@ -19,11 +19,11 @@ find ./path/ -name '*.txt' -exec rm '{}' \;
|
||||
# To find files with extension '.txt' and look for a string into them:
|
||||
find ./path/ -name '*.txt' | xargs grep 'string'
|
||||
|
||||
# To find files with size bigger than 5 Mb and sort them by size:
|
||||
# To find files with size bigger than 5 Mebibyte and sort them by size:
|
||||
find . -size +5M -type f -print0 | xargs -0 ls -Ssh | sort -z
|
||||
|
||||
# To find files bigger thank 2 MB and list them:
|
||||
find . -type f -size +20000k -exec ls -lh {} \; | awk '{ print $9 ": " $5 }'
|
||||
# To find files bigger than 2 Megabyte and list them:
|
||||
find . -type f -size +200000000c -exec ls -lh {} \; | awk '{ print $9 ": " $5 }'
|
||||
|
||||
# To find files modified more than 7 days ago and list file information
|
||||
find . -type f -mtime +7d -ls
|
||||
|
12
cheat/cheatsheets/gyb
Normal file
12
cheat/cheatsheets/gyb
Normal file
@ -0,0 +1,12 @@
|
||||
# To estimate the number and the size of all mails on youremail@gmail.com
|
||||
gyb --email youremail@gmail.com --action estimate
|
||||
|
||||
# To backup from youremail@gmail.com to your local-folder
|
||||
gyb --email youremail@gmail.com --action backup --local-folder "~/MyLocalFolder/"
|
||||
|
||||
# To backup from youremail@gmail.com only important or starred emails to the
|
||||
# default local folder GYB-GMail-Backup-youremail@gmail.com
|
||||
gyb --email youremail@gmail.com --search "is:important OR is:starred"
|
||||
|
||||
# To restore from your local-folder to youremail@gmail.com
|
||||
gyb --email youremail@gmail.com --action restore --local-folder "~/MyLocalFolder/"
|
3
cheat/cheatsheets/iconv
Normal file
3
cheat/cheatsheets/iconv
Normal file
@ -0,0 +1,3 @@
|
||||
# To convert file (iconv.src) from iso-8859-1 to utf-8 and save to
|
||||
# /tmp/iconv.out
|
||||
iconv -f iso-8859-1 -t utf-8 iconv.src -o /tmp/iconv.out
|
5
cheat/cheatsheets/kill
Normal file
5
cheat/cheatsheets/kill
Normal file
@ -0,0 +1,5 @@
|
||||
# Kill a process gracefully
|
||||
kill -15 <process id>
|
||||
|
||||
# Kill a process forcefully
|
||||
kill -9 <process id>
|
14
cheat/cheatsheets/mv
Normal file
14
cheat/cheatsheets/mv
Normal file
@ -0,0 +1,14 @@
|
||||
# Move a file from one place to another
|
||||
mv ~/Desktop/foo.txt ~/Documents/foo.txt
|
||||
|
||||
# Move a file from one place to another and automatically overwrite if the destination file exists
|
||||
# (This will override any previous -i or -n args)
|
||||
mv -f ~/Desktop/foo.txt ~/Documents/foo.txt
|
||||
|
||||
# Move a file from one place to another but ask before overwriting an existing file
|
||||
# (This will override any previous -f or -n args)
|
||||
mv -i ~/Desktop/foo.txt ~/Documents/foo.txt
|
||||
|
||||
# Move a file from one place to another but never overwrite anything
|
||||
# (This will override any previous -f or -i args)
|
||||
mv -n ~/Desktop/foo.txt ~/Documents/foo.txt
|
@ -28,4 +28,10 @@ INSERT INTO tbl_name (col1,col2) VALUES(15,col1*2);
|
||||
UPDATE tbl_name SET col1 = "example";
|
||||
|
||||
# Basic DELETE Statement
|
||||
DELETE FROM tbl_name WHERE user = 'jcole';
|
||||
DELETE FROM tbl_name WHERE user = 'jcole';
|
||||
|
||||
# To check stored procedure
|
||||
SHOW PROCEDURE STATUS;
|
||||
|
||||
# To check stored function
|
||||
SHOW FUNCTION STATUS;
|
||||
|
@ -15,6 +15,9 @@ openssl req -text -noout -in server.csr
|
||||
# To show certificate information for generated certificate
|
||||
openssl x509 -text -noout -in server.crt
|
||||
|
||||
# To get the sha256 fingerprint of a certificate
|
||||
openssl x509 -in server.crt -noout -sha256 -fingerprint
|
||||
|
||||
# To view certificate expiration:
|
||||
echo | openssl s_client -connect <hostname>:443 2> /dev/null | \
|
||||
awk '/-----BEGIN/,/END CERTIFICATE-----/' | \
|
||||
|
8
cheat/cheatsheets/perl
Normal file
8
cheat/cheatsheets/perl
Normal file
@ -0,0 +1,8 @@
|
||||
# To view the perl version:
|
||||
perl -v
|
||||
|
||||
# Replace string "\n" to newline
|
||||
echo -e "foo\nbar\nbaz" | perl -pe 's/\n/\\n/g;'
|
||||
|
||||
# Replace newline with multiple line to space
|
||||
cat test.txt | perl -0pe "s/test1\ntest2/test1 test2/m"
|
5
cheat/cheatsheets/pgrep
Normal file
5
cheat/cheatsheets/pgrep
Normal file
@ -0,0 +1,5 @@
|
||||
# Get a list of PIDs matching the pattern
|
||||
pgrep example
|
||||
|
||||
# Kill all PIDs matching the pattern
|
||||
pgrep -f example | xargs kill
|
@ -23,5 +23,8 @@ pip list --outdated
|
||||
# Upgrade all outdated packages, thanks to http://stackoverflow.com/a/3452888
|
||||
pip freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip install -U
|
||||
|
||||
# Upgrade outdated packages on latest version of pip
|
||||
pip list --outdated --format=freeze | cut -d = -f 1 | xargs -n1 pip install -U
|
||||
|
||||
# Install specific version of a package
|
||||
pip install -I SomePackage1==1.1.0 'SomePackage2>=1.0.4'
|
||||
|
5
cheat/cheatsheets/pkill
Normal file
5
cheat/cheatsheets/pkill
Normal file
@ -0,0 +1,5 @@
|
||||
# To kill a process using it's full process name
|
||||
pkill <processname>
|
||||
|
||||
# To kill a process by it's partial name
|
||||
pkill -f <string>
|
26
cheat/cheatsheets/psql
Normal file
26
cheat/cheatsheets/psql
Normal file
@ -0,0 +1,26 @@
|
||||
# psql is the PostgreSQL terminal interface. The following commands were tested on version 9.5.
|
||||
# Connection options:
|
||||
# -U username (if not specified current OS user is used).
|
||||
# -p port.
|
||||
# -h server hostname/address.
|
||||
|
||||
# Connect to a specific database:
|
||||
psql -U postgres -h serverAddress -d dbName
|
||||
|
||||
# Get databases on a server:
|
||||
psql -U postgres -h serverAddress --list
|
||||
|
||||
# Execute sql query and save output to file:
|
||||
psql -U postgres -d dbName -c 'select * from tableName;' -o fileName
|
||||
|
||||
# Execute query and get tabular html output:
|
||||
psql -U postgres -d dbName -H -c 'select * from tableName;'
|
||||
|
||||
# Execute query and save resulting rows to csv file:
|
||||
psql -U postgres -d dbName -t -A -P fieldsep=',' -c 'select * from tableName;' -o fileName.csv
|
||||
|
||||
# Read commands from file:
|
||||
psql -f fileName
|
||||
|
||||
# Restore databases from file:
|
||||
psql -f fileName.backup postgres
|
2
cheat/cheatsheets/pwd
Normal file
2
cheat/cheatsheets/pwd
Normal file
@ -0,0 +1,2 @@
|
||||
# Show the absolute path of your current working directory on the filesystem
|
||||
pwd
|
26
cheat/cheatsheets/rcs
Normal file
26
cheat/cheatsheets/rcs
Normal file
@ -0,0 +1,26 @@
|
||||
# Initial check-in of file (leaving file active in filesystem)
|
||||
ci -u <filename>
|
||||
|
||||
# Check out with lock
|
||||
co -l <filename>
|
||||
|
||||
# Check in and unlock (leaving file active in filesystem)
|
||||
ci -u <filename>
|
||||
|
||||
# Display version x.y of a file
|
||||
co -px.y <filename>
|
||||
|
||||
# Undo to version x.y (overwrites file active in filesystem with the specified revision)
|
||||
co -rx.y <filename>
|
||||
|
||||
# Diff file active in filesystem and last revision
|
||||
rcsdiff <filename>
|
||||
|
||||
# Diff versions x.y and x.z
|
||||
rcsdiff -rx.y -rx.z <filename>
|
||||
|
||||
# View log of check-ins
|
||||
rlog <filename>
|
||||
|
||||
# Break an RCS lock held by another person on a file
|
||||
rcs -u <filename>
|
@ -19,6 +19,9 @@ tar -xjvf /path/to/foo.tgz
|
||||
# To create a .bz2 archive:
|
||||
tar -cjvf /path/to/foo.tgz /path/to/foo/
|
||||
|
||||
# To extract a .tar in specified Directory:
|
||||
tar -xvf /path/to/foo.tar -C /path/to/destination/
|
||||
|
||||
# To list the content of an .bz2 archive:
|
||||
tar -jtvf /path/to/foo.tgz
|
||||
|
||||
|
18
cheat/cheatsheets/wc
Normal file
18
cheat/cheatsheets/wc
Normal file
@ -0,0 +1,18 @@
|
||||
# Count the number of words (file or STDIN)
|
||||
wc -w /path/to/foo.txt
|
||||
cat /path/to/foo.txt | wc -w
|
||||
|
||||
# Count the number of lines (file or STDIN)
|
||||
wc -l /path/to/foo.txt
|
||||
cat /path/to/foo.txt | wc -l
|
||||
|
||||
# Count the number of bytes (file or STDIN)
|
||||
wc -c /path/to/foo.txt
|
||||
cat /path/to/foo.txt | wc -c
|
||||
|
||||
# Count files and directories at a given location
|
||||
ls -l | wc -l
|
||||
|
||||
# If you ever use `wc` in a shell script and need to compare the output with an int you can
|
||||
# clean the output (wc returns extra characters around the integer) by using xargs:
|
||||
ls -l | wc -l | xargs
|
@ -10,3 +10,7 @@ find -name *.pdf | xargs -I{} rm -rf '{}'
|
||||
# -n1 => One file by one file. ( -n2 => 2 files by 2 files )
|
||||
|
||||
find -name *.pdf | xargs -I{} -n1 echo '&{}='
|
||||
|
||||
# If find returns no result, do not run rm
|
||||
# This option is a GNU extension.
|
||||
find -name "*.pdf" | xargs --no-run-if-empty rm
|
||||
|
@ -16,5 +16,8 @@ youtube-dl --playlist-start 5 example.com/watch?v=id&list=listid
|
||||
# To simulate a download with youtube-dl:
|
||||
youtube-dl -s example.com/watch?v=id
|
||||
|
||||
# To download audio in mp3 format with best quality available
|
||||
youtube-dl --extract-audio --audio-format mp3 --audio-quality 0 example.com/watch?v=id
|
||||
|
||||
# For all video formats see
|
||||
# http://en.wikipedia.org/wiki/YouTube#Quality_and_codecs
|
||||
|
82
cheat/cheatsheets/zsh
Normal file
82
cheat/cheatsheets/zsh
Normal file
@ -0,0 +1,82 @@
|
||||
# A plain old glob
|
||||
print -l *.txt
|
||||
print -l **/*.txt
|
||||
|
||||
# Show text files that end in a number from 1 to 10
|
||||
print -l **/*<1-10>.txt
|
||||
|
||||
# Show text files that start with the letter a
|
||||
print -l **/[a]*.txt
|
||||
|
||||
# Show text files that start with either ab or bc
|
||||
print -l **/(ab|bc)*.txt
|
||||
|
||||
# Show text files that don't start with a lower or uppercase c
|
||||
print -l **/[^cC]*.txt
|
||||
|
||||
# Show only directories
|
||||
print -l **/*(/)
|
||||
|
||||
# Show only regular files
|
||||
print -l **/*(.)
|
||||
|
||||
# Show empty files
|
||||
print -l **/*(L0)
|
||||
|
||||
# Show files greater than 3 KB
|
||||
print -l **/*(Lk+3)
|
||||
|
||||
# Show files modified in the last hour
|
||||
print -l **/*(mh-1)
|
||||
|
||||
# Sort files from most to least recently modified and show the last 3
|
||||
print -l **/*(om[1,3])
|
||||
|
||||
# `.` show files, `Lm-2` smaller than 2MB, `mh-1` modified in last hour,
|
||||
# `om` sort by modification date, `[1,3]` only first 3 files
|
||||
print -l **/*(.Lm-2mh-1om[1,3])
|
||||
|
||||
# Show every directory that contain directory `.git`
|
||||
print -l **/*(e:'[[ -d $REPLY/.git ]]':)
|
||||
|
||||
# Return the file name (t stands for tail)
|
||||
print -l *.txt(:t)
|
||||
|
||||
# Return the file name without the extension (r stands for remove_extension)
|
||||
print -l *.txt(:t:r)
|
||||
|
||||
# Return the extension
|
||||
print -l *.txt(:e)
|
||||
|
||||
# Return the parent folder of the file (h stands for head)
|
||||
print -l *.txt(:h)
|
||||
|
||||
# Return the parent folder of the parent
|
||||
print -l *.txt(:h:h)
|
||||
|
||||
# Return the parent folder of the first file
|
||||
print -l *.txt([1]:h)
|
||||
|
||||
# Parameter expansion
|
||||
files=(*.txt) # store a glob in a variable
|
||||
print -l $files
|
||||
print -l $files(:h) # this is the syntax we saw before
|
||||
print -l ${files:h}
|
||||
print -l ${files(:h)} # don't mix the two, or you'll get an error
|
||||
print -l ${files:u} # the :u modifier makes the text uppercase
|
||||
|
||||
# :s modifier
|
||||
variable="path/aaabcd"
|
||||
echo ${variable:s/bc/BC/} # path/aaaBCd
|
||||
echo ${variable:s_bc_BC_} # path/aaaBCd
|
||||
echo ${variable:s/\//./} # path.aaabcd (escaping the slash \/)
|
||||
echo ${variable:s_/_._} # path.aaabcd (slightly more readable)
|
||||
echo ${variable:s/a/A/} # pAth/aaabcd (only first A is replaced)
|
||||
echo ${variable:gs/a/A/} # pAth/AAAbcd (all A is replaced)
|
||||
|
||||
# Split the file name at each underscore
|
||||
echo ${(s._.)file}
|
||||
|
||||
# Join expansion flag, opposite of the split flag.
|
||||
array=(a b c d)
|
||||
echo ${(j.-.)array} # a-b-c-d
|
Reference in New Issue
Block a user