Find text inside of a file grep -rn . -e <your-pattern> Find and replace find /path/to/files -type f -exec sed -i 's/oldstring/new string/g' {} \; Use find to create symlink to all files in some dir to the current dir find <some-other-dir> -type f -exec ln -sf {} $(pwd) \;