From: hyunsik.noh Date: Fri, 8 Nov 2013 05:52:36 +0000 (+0900) Subject: COMMON: Fix command to get process list X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8cd2c1c80aa8cb12eff9329e492a9a72d37ea653;p=sdk%2Fide%2Fcommon-eplugin.git COMMON: Fix command to get process list The "|" has removed from command to get process list. Change-Id: Ib9c0a0ca74f6fac93da9ee0ef49fc2e9a5c69d08 Signed-off-by: hyunsik.noh --- diff --git a/org.tizen.common/src/org/tizen/common/TizenPlatformConstants.java b/org.tizen.common/src/org/tizen/common/TizenPlatformConstants.java index 41492b2..7aca84b 100644 --- a/org.tizen.common/src/org/tizen/common/TizenPlatformConstants.java +++ b/org.tizen.common/src/org/tizen/common/TizenPlatformConstants.java @@ -165,7 +165,7 @@ public class TizenPlatformConstants { // Should be absolute path LAUNCH_CMD = "/usr/bin/launch_app %s"; SDK_ROOT_COMMAND = "/usr/bin/da_command"; - CMD_PROCESS = SDK_ROOT_COMMAND + " process | grep %s"; + CMD_PROCESS = SDK_ROOT_COMMAND + " process"; // Should be absolute path DLOGUTIL_CMD = "/usr/bin/dlogutil %s";