PoshCode Archive  Artifact [a7e2197a1e]

Artifact a7e2197a1e3e52815c1fe5a2544b5b60107702edb259d82a50acc45c739aee87:

  • File EchoTest-cmd.ps1 — part of check-in [d8df007c55] at 2018-06-10 13:05:12 on branch trunk — A DOS cmd script to show how your arguments look to “native” console apps (user: unknown size: 465)

# encoding: ascii
# api: powershell
# title: EchoTest.cmd
# description: A DOS cmd script to show how your arguments look to “native” console apps
# version: 0.1
# license: CC0
# x-poshcode-id: 2110
# x-archived: 2010-09-04T00:26:11
#
#
@Echo 00: %0 
@Echo 01: %1 
@Echo 02: %2 
@Echo 03: %3 
@Echo 04: %4 
@Echo 05: %5 
@Echo 06: %6 
@Echo 07: %7 
@Echo 08: %8 
@Echo 09: %9 

@Echo All together, it looked like this to DOS:
@Echo %0 %*