How to open same app multiple times
sudo cp -R /Applications/WeChat.app /Applications/WeChat2.app
# install xcode
# Change the app bundle identifier
sudo /usr/libexec/PlistBuddy -c "Set :CFBundleIdentifier com.tencent.xinWeChat2" /Applications/WeChat2.app/Contents/Info.plist
# Remove extended attributes
sudo xattr -cr /Applications/WeChat2.app
# Re-sign the app
sudo codesign --force --deep --sign - /Applications/WeChat2.app
# Verify the code signature
codesign -vv --deep --strict /Applications/WeChat2.app
Ref:
