diff --git a/client/tarantool/tc_pager.c b/client/tarantool/tc_pager.c
index 49c77e61fd2bfd56c8b44bb220b1211df1159cc4..a97b50dc00ab65e3ef4654377115253b8764511d 100644
--- a/client/tarantool/tc_pager.c
+++ b/client/tarantool/tc_pager.c
@@ -22,7 +22,7 @@ void tc_pager_start() {
 		return;
 	}
 	int pipefd[2];
-	const char *const argv[] = {"/bin/bash", "-c", tc.opt.pager, NULL};
+	const char *const argv[] = {"/bin/sh", "-c", tc.opt.pager, NULL};
 
 	if (pipe(pipefd) < 0)
 		tc_error("Failed to open pipe. Errno: %s", strerror(errno));