PoshCode Archive  Artifact [9e23333a9c]

Artifact 9e23333a9cce7b40ccaf6aaeb3dcfdf8bcc23a3e4b8bf8c80dc12c03cbab383f:

  • File Bash-out-shell.ps1 — part of check-in [9c90e85bc4] at 2018-06-10 13:46:26 on branch trunk — shows results of a command in different command shell window (user: greg zakharov size: 550)

# encoding: ascii
# api: bash
# title: Bash: out shell
# description: shows results of a command in different command shell window
# version: 0.1
# author: greg zakharov
# license: CC0
# x-poshcode-id: 4829
# x-archived: 2014-01-29T05:19:23
# x-published: 2014-01-22T11:47:00
#
#
#!/bin/bash

#if your favorite DE is GNOME
gnome-terminal -x bash -c "ls -a;echo Press any key to continue...;read"

#if your favorite DE is XFCE (the best of all DE at last!!!)
xfce4-terminal -x bash -c "ls -a;echo Press any key to continue...;read"