📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-01 20:26:27
📂
/ (Root)
/
home
/
orkouolp
/
web
/
testing.orkobd
/
laravel
/
node_modules
/
.bin
📍 /home/orkouolp/web/testing.orkobd/laravel/node_modules/.bin
🔄 Refresh
✏️
Editing: conc.ps1
Writable
#!/usr/bin/env pwsh $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent $exe="" if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { # Fix case when both the Windows and Linux builds of Node # are installed in the same directory $exe=".exe" } $ret=0 if (Test-Path "$basedir/node$exe") { # Support pipeline input if ($MyInvocation.ExpectingInput) { $input | & "$basedir/node$exe" "$basedir/../concurrently/dist/bin/concurrently.js" $args } else { & "$basedir/node$exe" "$basedir/../concurrently/dist/bin/concurrently.js" $args } $ret=$LASTEXITCODE } else { # Support pipeline input if ($MyInvocation.ExpectingInput) { $input | & "node$exe" "$basedir/../concurrently/dist/bin/concurrently.js" $args } else { & "node$exe" "$basedir/../concurrently/dist/bin/concurrently.js" $args } $ret=$LASTEXITCODE } exit $ret
💾 Save Changes
❌ Cancel