Skip to content

Commit

Permalink
proper new style without the repeats
Browse files Browse the repository at this point in the history
  • Loading branch information
teuben committed Jul 28, 2023
1 parent 7cfe9a1 commit 1bc83db
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions example2.csh
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
#! /usr/bin/env csh
#
# new 2023 style (t)csh - works with tkrun now
# new 2023 style (t)csh - does not work with tkrun yet

set file1 = foo # help for input file1 #> IFILE file1=
set file2 = bar # help for output file2 #> OFILE file2=
set dir3 = fum # help for input dir3 #> IDIR dir3=
set dir4 = baz # help for output dir4 #> ODIR dir4=
set hello = world # help for text entry hello #> ENTRY hello=world
set a = 1 # help for a, between 0 and 2 #> SCALE a=1 0:2:0.1
set b = 2 # help for b, pick 1, 2 or 3 #> RADIO b=2 0,1,2
set c = 3 # help for c, check any of 6 #> CHECK c=3 0,1,2,a,b,c
set file1 = foo # help for input file1 #> IFILE
set file2 = bar # help for output file2 #> OFILE
set dir3 = fum # help for input dir3 #> IDIR
set dir4 = baz # help for output dir4 #> ODIR
set hello = world # help for text entry hello #> ENTRY
set a = 1 # help for a, between 0 and 2 #> SCALE 0:2:0.1
set b = 2 # help for b, pick 1, 2 or 3 #> RADIO 0,1,2
set c = 3,c # help for c, check any of 6 #> CHECK 1,2,3,a,b,c

#
foreach _arg ($*)
Expand Down

0 comments on commit 1bc83db

Please sign in to comment.