Using powershell on win10 to invoke bash

 
Thread Tools Search this Thread
Top Forums UNIX for Beginners Questions & Answers Using powershell on win10 to invoke bash
# 15  
Old 03-13-2018
okey thank you. So problem can be here that bash script has no java in correct place.

How can i set up path for this correctly? (i do not have idea).

Best,
Jacek
# 16  
Old 03-13-2018
Is /mnt/c/ProgramData/Oracle/Java/javapath_target_79965703 a valid path, i.e. does this directory exist and contain any executables?

For just testing, you could add the additional path:
Code:
PATH=/mnt/c/ProgramData/Oracle/Java/javapath:$PATH

and mayhap export it. Should this work, you may want to make it persistent, probably by modifying your login ~.profile or ~.bashrc file, either adding the valid path, or correcting the wrong one.
# 17  
Old 03-13-2018
Hi RudiC,

thank you!

Here you can find image what is in my folder:
link

added this path within bash command line. Nothing happend:

Code:
root@admin-Komputer:/mnt/c/Users/admin# PATH=/mnt/c/ProgramData/Oracle/Java/javapath:$PATH

still flyway migrate doesnt work.

Best,
Jacek
# 18  
Old 03-13-2018
see post#6.
# 19  
Old 03-13-2018
I see, i went to this folder using cd command:

Code:
PS C:\Users\admin> bash
root@admin-Komputer:/mnt/c/Users/admin# cd /mnt/c/Users/admin/Downloads/flyway-commandline-5.0.7-windows-x64/flyway-5.0.7
root@admin-Komputer:/mnt/c/Users/admin/Downloads/flyway-commandline-5.0.7-windows-x64/flyway-5.0.7# PATH=/mnt/c/ProgramData/Oracle/Java/javapath:$PATH
root@admin-Komputer:/mnt/c/Users/admin/Downloads/flyway-commandline-5.0.7-windows-x64/flyway-5.0.7# flyway migrate
flyway: command not found
root@admin-Komputer:/mnt/c/Users/admin/Downloads/flyway-commandline-5.0.7-windows-x64/flyway-5.0.7# ./flyway migrate
./flyway: line 62: java: command not found

Best wishes,
Jacek
# 20  
Old 03-13-2018
OK - WHERE is the java command? Add the relevant path.
This User Gave Thanks to RudiC For This Post:
# 21  
Old 03-13-2018
Sorry,

i do not understand exactly.
I added path here:

Code:
root@admin-Komputer:/mnt/c/Users/admin/Downloads/flyway-commandline-5.0.7-windows-x64/flyway-5.0.7# PATH=/mnt/c/ProgramData/Oracle/Java/javapath:$PATH

where else should i add this?

Jacek
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Execute powershell script with UNIX

Hi I have a powershell script which is checking whether a windows service is running (as shown below) function FuncCheckService { $ServiceName = 'pgsql-9.2' $arrService = Get-Service -Name $ServiceName if ($arrService.Status -eq 'Running') { Write-Output... (8 Replies)
Discussion started by: simpsa27
8 Replies

2. Windows & DOS: Issues & Discussions

Powershell + office 365

Hello ! I am looking for powershell guys. I have lot of office365 users ,and i need add/remove calendar items from powershell. my users have multiple calendars. how can i select calendar ,and how can i add / remove item to selected calendar. PS C:\appl\o365calendar> get-mailboxfolder... (0 Replies)
Discussion started by: zoldkovacs
0 Replies

3. Shell Programming and Scripting

Bash script - cygwin (powershell?) pull from GitHub API Parse JSON

All, Have a weird issue where i need to generate a report from GitHub monthly detailing user accounts and the last time they logged in. I'm using a windows box to do this (work issued) and would like to know if anyone has any experience scripting for GitAPI using windows / cygwin / powershell?... (9 Replies)
Discussion started by: ChocoTaco
9 Replies

4. Windows & DOS: Issues & Discussions

Help with PowerShell

I am very not knowledgeable with regards to Windows, and even more so with PowerShell, but I'm hoping someone can help me with what should be a fairly simple script. Remove all local accounts matching a given regular expression It seems like I'd need the following combined... Somehow... ... (0 Replies)
Discussion started by: Vryali
0 Replies

5. Shell Programming and Scripting

How to start powershell with shebang from windows/cygwin/bash?

I would like to the the windws8/cygwin/bash shebang feature to start a powershell script. I do a "chmod +x set-sound.ps1" and then at a bash prompt I do ./set-sound.ps1 The first line of ./set-sound.ps1 #!powershell.exe -ExecutionPolicy unrestricted The result is the result: ... (5 Replies)
Discussion started by: siegfried
5 Replies

6. Windows & DOS: Issues & Discussions

Powershell Script Help

Need some help getting this script to work. can someone help. I am trying to create a script that moves log files to another location and only keeps 60 days worth. please see script I started but having issue getting to work.. $TODAY=GET-DATE GET-CHILDITEM C:\test\*.LOG | Where {... (9 Replies)
Discussion started by: freedavis
9 Replies

7. Windows & DOS: Issues & Discussions

Does PowerSHell have *stat command analogs?

I.e. like vmstat, cpustat, iostat, fsstat, kstat ..etc? (1 Reply)
Discussion started by: Xcislav
1 Replies

8. Shell Programming and Scripting

Invoke a bash script with perl

Hi all, I use the perl script to invoke the bash script. and now there is a problem. my bash script lists as follows: and I use perl run this test scripts now the problem is when I run the perl script I find there is nothing recorded in the file /tmp/jdk.txt (2 Replies)
Discussion started by: Damon_Qu
2 Replies

9. Shell Programming and Scripting

Invoke Perl function from Bash ?

Is it possible to invoke a perl function from a bash script ? There are existing perl scripts with many functions that I want to reuse from a more recent script written in bash. Hence the question. (1 Reply)
Discussion started by: NewDeb
1 Replies
Login or Register to Ask a Question