如果是在linux系统中查找,可在命令行输入:
sudo find / -name "pycharm64.vmoptions" 2>/dev/null
In the command sudo find / -name “pycharm64.vmoptions” 2>/dev/null, the 2>/dev/null part is a redirection operator that redirects the standard error output (stderr) of the find command to the special file /dev/null.
The /dev/null file is a special device file in Unix-like systems that discards all data written to it and returns an end-of-file (EOF) when read.
By redirecting stderr to /dev/n