Linux

Argument list too long for mv,cp,rm commands (Bash)

Argument list too long for mv,cp,rm commands (Bash)

The reason this occurs is because bash actually expands the asterisk to every matching file, producing a very long command line. Solution find Path/to/source-folder/ -name '*.*' -exec mv {} Path/...

Jan 07, 2016 · Tushar
Check which process is using port 80 in OSX

Check which process is using port 80 in OSX

You need to run these commands as root to show other users' processes, for example: sudo lsof -i ':80' If you want to close any particular process you can kill the process by executing below comma...

Jul 16, 2015 · Tushar