-
1. Re: custom command using windows cmd
Jason Schilling Aug 12, 2016 3:26 PM (in response to Jason Schilling)Actually, I noticed I was able to do it using NSH with a simple rm command, but is there a way to do it within the windows cmd?
-
2. Re: custom command using windows cmd
Bill RobinsonAug 14, 2016 3:42 PM (in response to Jason Schilling)
if you can use nsh to do it, why do you want to do it w/ windows commands ?
-
3. Re: custom command using windows cmd
Jason Schilling Aug 15, 2016 8:11 AM (in response to Bill Robinson)If it were just me using it, I'm sure I can figure everything out. I have to hand this over to a team with 0 linux/bash/nsh knowledge so I need to make as easy as possible for them to pick up and get using asap.
-
4. Re: custom command using windows cmd
Bill RobinsonAug 15, 2016 8:31 AM (in response to Jason Schilling)
Using nexec and dos commands is going to be a lot harder to figure out than a single rm command.
-
5. Re: custom command using windows cmd
Jason Schilling Aug 15, 2016 8:37 AM (in response to Bill Robinson)I agree, but this isn't just the case for this one command and I think that's the problem. The delete mentioned above was more of an example of what needed to be done. The idea is I don't want to be the guy they come to every time they need to convert a windows command into something that they can run in nsh.
-
6. Re: custom command using windows cmd
Bill RobinsonAug 15, 2016 8:39 AM (in response to Jason Schilling)
1 of 1 people found this helpfuluse a 'type 3' nsh script or the 'external command' in a blpackage and do it natively in batch then.
or they need to learn nsh/shell scripting.
-
7. Re: custom command using windows cmd
Jason Schilling Aug 15, 2016 8:46 AM (in response to Bill Robinson)Looks like that's what I will have to do. Thanks!