Last active
June 27, 2018 09:14
-
-
Save hlzz/db68fb6f401fe8a60586b19222d4f2b9 to your computer and use it in GitHub Desktop.
Some useful bash commands
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# some bash tricks (Ubuntu 16.04) | |
## show the smallest 500 files | |
ll | awk '{print $5" "$NF}' | sort | head -500 | |
## if find some empty files, you can output them to a file named empty_files.txt | |
## then rm them using this pipe | |
cat empty_files.txt | awk '{print "index/"$2}' | xargs rm | |
## rank file size from largest to smallest and show top 100 | |
ll | awk '{print $5" "$NF}' | sort -nr | head -100 | |
## check whether jpeg files are corrupted ('sudo apt install jpeginfo' first) | |
find -iname “*.jpg” -print0 | xargs -0 jpeginfo -c | grep -e WARNING -e ERROR | |
## open a long list of files and do remote copying using 'scp' | |
cat test_list | awk '{print $1" 141:/mnt/triple139/data/google/test/"}' | xargs scp | |
## split a file without splitting the text lines | |
#split mydata.txt into 3 sub files and use the prefix 'mydata.part' | |
split -n l/3 mydata.txt mydata.part | |
#combine them | |
cat mydata.part* > mydata.txt | |
## Emptying the buffers cache (run as root) | |
## note that this does not improve performance (see https://www.linuxatemyram.com/) | |
sudo sh -c 'echo 3 >/proc/sys/vm/drop_caches' | |
## rsync with creating new sub-folders. | |
rsync -a --relative /new/x/y/z/ user@remote:/pre_existing/dir/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment