We could use find + xargs to make it happen. For example, I would like to delete file with file name “.DS_Store” and “._” we could execute the code like below find . -name “.DS_Store” -print0 | xargs -0 rm -rf  find . -name “._*” -print0 | xargs -0 rm -rf

Read More →

I think sshfs is a command line ftp XDDD usage: sshfs [user@]host:[dir] mountpoint [options] usually I will log in with option -0 sshfs_sync to make the write option will be process immediately remotely eg.  sshfs wahaha@kclin.com:/ test_point -o sshfs_sync will mount the root file system in kclin.com to local test_point folder To unmount the folder, […]

Read More →