grml-exec-wrapper: do not use print
[grml-scripts-core.git] / usr_bin / grml-exec-wrapper
index af15d98..8159246 100755 (executable)
@@ -28,7 +28,7 @@ display_info() {
 if is_installed Xdialog && test -n "$DISPLAY" ; then
     Xdialog --title "grml-exec-wrapper" --msgbox "$1" 0 0 0
 else
-    print "$1">&2
+    printf '%s\n' "$1">&2
 fi
 }