-ci'
- change inside the single quotes
-ciw
- change inside a word
-ci(
- change inside parentheses
-dit
- delete inside an HTML tag, etc
-80i * ^[
make a line of 80*
-fn12 = nohls
-:FZF
to bring FuzzyFile
-^N
to open NerdTree
-^WW
change window
-/
find
-s/foo/bar/g
search foo and replace by bar globally (not sure about g)
- search in all files :
vimgrep /my-search*/j src/**/*.scss
(IDK why it uses /j) - then use
cw
to display results in a vim panel maybe read https://seesparkbox.com/foundry/demystifying_multi_file_searches_in_vim_and_the_command_line
The actions are based on the command z associated with the action option:
zc
— close the fold (where your cursor is positioned)
zM
—close all folds on current buffer
zo
— open the fold (where your cursor is positioned)
zR
— open all folds on current buffer
zj
— cursor is moved to next fold
zk
— cursor is moved to previous fold
- Put the cursor on foo .
- Press * to search for the next occurrence.
- Type ciw (change inner word) then bar then press Escape.
- Press n (move to next occurrence) then . (repeat change).
- Repeat last step.
git push --set-upstream origin master
so you can use gp
for git push origin master
and gpu
for git pull origin master
get all the files changed between two branches
git diff --name-only <notMainDev> $(git merge-base <notMainDev> <mainDev>)
ssh-keygen -t rsa -C "[email protected]"
Private key is supposed to be chmod 600
Ex: for CI deployment
sudo -u myuser ssh-keygen -t rsa
Ex: one key per repo
vim ~/.ssh/config
Then :
Host my-host IdentityFile /home/myname/.ssh/id_rsa_name
htpasswd /etc/nginx/.htpasswd mysuser
(it will prompt for password)
htpasswd -c /etc/nginx/.htpasswd mysuser
(happend -c
if there is no htpasswd file and you need to create one. Beware as it will erase the previous one if a file already exists).
In Froxlor look for *Own vHost-settings: * in domain settings :
location / { auth_basic "Restricted"; auth_basic_user_file /etc/nginx/.htpasswd; }
echo "body of your email" | mail -s "This is a Subject" -a "From: [email protected]" [email protected]
find . -regex '.*/some_text_in_file_name/[^/]*.jpg'
grep -rnw '/path/to/somewhere/' -e 'pattern'
- '-r' or '-R' is recursive,
- '-n' is line number, and
- '-w' stands for match the whole word.
- '-l' (lower-case L) can be added to just give the file name of matching files. Along with these, '--exclude', '--include', '--exclude-dir' flags could be used for efficient searching:
This will only search through those files which have .c or .h extensions:
'grep --include=*.{c,h} -rnw '/path/to/somewhere/' -e "pattern"'
This will exclude searching all the files ending with .o extension:
'grep --exclude=*.o -rnw '/path/to/somewhere/' -e "pattern"'
For directories it's possible to exclude a particular directory(ies) through --exclude-dir parameter. For example, this will exclude the dirs dir1/, dir2/ and all of them matching *.dst/:
'grep --exclude-dir={dir1,dir2,*.dst} -rnw '/path/to/somewhere/' -e "pattern"' This works very well for me, to achieve almost the same purpose like yours.
see https://stackoverflow.com/a/16957078 For more options check man grep.
adduser username && adduser username sudo
cat ~/.ssh/id_rsa.pub | ssh newuser@vps-alias "mkdir -p ~/.ssh && chmod 700 ~/.ssh && cat >> ~/.ssh/authorized_keys"
Use Vim :%s/foo/bar/g
Or use sed :
sed -i 's/original/new/g' file.txt
source [https://askubuntu.com/questions/20414/find-and-replace-text-within-a-file-using-commands]
sed
= Stream EDitor
-i
= in-place (i.e. save back to the original file)
The command string:
s
= the substitute commandoriginal
= a regular expression describing the word to replace (or just the word itself)new
= the text to replace it withg
= global (i.e. replace all and not just the first occurrence)file.txt
= the file name
sed 's/"//g' 201805010-NDF-Bluecraft-2017-gmail.csv | while IFS=, read orig new; do mv "$orig" "$new"; done
OR avoid encoding iussues with C_CTYPE=C && LANG=C
C_CTYPE=C && LANG=C && sed 's/"//g' 201805010-NDF-Bluecraft-2017.csv | while IFS=, read orig new; do mv "$orig" "$new"; done
zmv '(*)--Gmail - (*)' '$1--Gmail-$2'
for x in *.JPG; do mv "$x" "${x%.JPG}.jpg"; done
for f in *?*.pdf; do mv -- "$f" "${f//?/}"; done
Chec SHA sum : openssl sha -sha256 filepath
-
get the commits
git log --oneline css/style.css
-
get the patches
git show 7c02d19 -- css/style.css >> patchfile7c02d19;
git show 0d432f3 -- css/style.css >> patchfile0d432f3;
git show b02eec0 -- css/style.css >> patchfileb02eec0;
- since I've done this on an empty file, it could not find the lines This will create rejection files from patch
patch -p1 < patchfile7c02d19; cp css/style.css.rej stylepatches/style.css.rej.7c02d19;
patch -p1 < patchfile0d432f3; cp css/style.css.rej stylepatches/style.css.rej.0d432f3;
patch -p1 < patchfileb02eec0; cp css/style.css.rej stylepatches/style.css.rej.b02eec0;
- concat all the patches - then finish manually
cat stylepatches/* > stylepatches/stylepatches.css
sips --resampleHeightWidthMax 1800 *.png
sips -s dpiHeight 144 -s dpiWidth 144 *.png
sips -s dpiHeight 72 -s dpiWidth 72 *.png
sips -z 256 256 my-icon.png --out [email protected]
If you'd like to resize all the images in a directory, enter
sips --resample[mode] [number] /[pathtomydirectory]/*.*
sips -Z 640 *.jpg
sips -s format jpeg -s formatOptions 80 "Beach party.tiff" --out "Beach party.jpg
Batch conversions are essentially the same as single-file conversions, but it’s a bit trickier due to how Terminal processes multiple files. Here’s a real-world example: I have a folder of 24 large (1.5MB to 2MB each) PNG files that I want to convert to JPEGs while keeping the original files intact. Once I’m in the proper directory (steps one and two in the above process), I need to use a loop to read all the PNG files, and convert each one with sips. That loop command looks like this:
for i in *.png; do sips -s format jpeg -s formatOptions 70 "${i}" --out "${i%png}jpg"; done
use-sips-to-quickly-easily-and-freely-convert-image-files bulk-resize-images-with-sips-on-mac/
Note : I use this to deal with large JS objects in Pug (ex. jade).
I use Pug as a static site generator and it only accepts single lined arrays of objects.
- var projects=[{"name":"Project\ name
cat src/human-readable.json | tr -d " \t\n\r" > dist/no-space.json
/*eslint no-unused-vars: ["error", { "varsIgnorePattern": "someVar"}]*/
Install brew install librsvg
if needed, then :
for i in *; do rsvg-convert $i -x 3 -y 3 -a -o `echo $i | sed -e 's/svg$/png/'`; done
-x 3 (ratio Width X 3)
-y 3 (ratio Height X 3)
-a (keep aspect ratio)