Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93
/home/sportsfe.../httpdocs/wp-conte.../plugins/wp-file-.../lib/codemirr.../mode/powershe...
File: index.html
<!doctype html>
[0] Fix | Delete
<html>
[1] Fix | Delete
<head>
[2] Fix | Delete
<meta charset="utf-8">
[3] Fix | Delete
<title>CodeMirror: Powershell mode</title>
[4] Fix | Delete
<link rel="stylesheet" href="../../doc/docs.css">
[5] Fix | Delete
<link rel="stylesheet" href="../../lib/codemirror.css">
[6] Fix | Delete
<script src="../../lib/codemirror.js"></script>
[7] Fix | Delete
<script src="powershell.js"></script>
[8] Fix | Delete
<style>.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>
[9] Fix | Delete
</head>
[10] Fix | Delete
<body>
[11] Fix | Delete
<div id=nav>
[12] Fix | Delete
<a href="http://codemirror.net"><h1>CodeMirror</h1><img id=logo src="../../doc/logo.png"></a>
[13] Fix | Delete
[14] Fix | Delete
<ul>
[15] Fix | Delete
<li><a href="../../index.html">Home</a>
[16] Fix | Delete
<li><a href="../../doc/manual.html">Manual</a>
[17] Fix | Delete
<li><a href="https://github.com/codemirror/codemirror">Code</a>
[18] Fix | Delete
</ul>
[19] Fix | Delete
<ul>
[20] Fix | Delete
<li><a href="../index.html">Language modes</a>
[21] Fix | Delete
<li><a class=active href="#">JavaScript</a>
[22] Fix | Delete
</ul>
[23] Fix | Delete
</div>
[24] Fix | Delete
<article>
[25] Fix | Delete
<h2>PowerShell mode</h2>
[26] Fix | Delete
[27] Fix | Delete
<div><textarea id="code" name="code">
[28] Fix | Delete
# Number Literals
[29] Fix | Delete
0 12345
[30] Fix | Delete
12kb 12mb 12gB 12Tb 12PB 12L 12D 12lkb 12dtb
[31] Fix | Delete
1.234 1.234e56 1. 1.e2 .2 .2e34
[32] Fix | Delete
1.2MB 1.kb .1dTb 1.e1gb
[33] Fix | Delete
0x1 0xabcdef 0x3tb 0xelmb
[34] Fix | Delete
[35] Fix | Delete
# String Literals
[36] Fix | Delete
'Literal escaping'''
[37] Fix | Delete
'Literal $variable'
[38] Fix | Delete
"Escaping 1`""
[39] Fix | Delete
"Escaping 2"""
[40] Fix | Delete
"Escaped `$variable"
[41] Fix | Delete
"Text, $variable and more text"
[42] Fix | Delete
"Text, ${variable with spaces} and more text."
[43] Fix | Delete
"Text, jQuery($expression + 3) and more text."
[44] Fix | Delete
"Text, jQuery("interpolation jQuery("inception")") and more text."
[45] Fix | Delete
[46] Fix | Delete
@"
[47] Fix | Delete
Multiline
[48] Fix | Delete
string
[49] Fix | Delete
"@
[50] Fix | Delete
# --
[51] Fix | Delete
@"
[52] Fix | Delete
Multiline
[53] Fix | Delete
string with quotes "'
[54] Fix | Delete
"@
[55] Fix | Delete
# --
[56] Fix | Delete
@'
[57] Fix | Delete
Multiline literal
[58] Fix | Delete
string with quotes "'
[59] Fix | Delete
'@
[60] Fix | Delete
[61] Fix | Delete
# Array and Hash literals
[62] Fix | Delete
@( 'a','b','c' )
[63] Fix | Delete
@{ 'key': 'value' }
[64] Fix | Delete
[65] Fix | Delete
# Variables
[66] Fix | Delete
$Variable = 5
[67] Fix | Delete
$global:variable = 5
[68] Fix | Delete
${Variable with spaces} = 5
[69] Fix | Delete
[70] Fix | Delete
# Operators
[71] Fix | Delete
= += -= *= /= %=
[72] Fix | Delete
++ -- .. -f * / % + -
[73] Fix | Delete
-not ! -bnot
[74] Fix | Delete
-split -isplit -csplit
[75] Fix | Delete
-join
[76] Fix | Delete
-is -isnot -as
[77] Fix | Delete
-eq -ieq -ceq -ne -ine -cne
[78] Fix | Delete
-gt -igt -cgt -ge -ige -cge
[79] Fix | Delete
-lt -ilt -clt -le -ile -cle
[80] Fix | Delete
-like -ilike -clike -notlike -inotlike -cnotlike
[81] Fix | Delete
-match -imatch -cmatch -notmatch -inotmatch -cnotmatch
[82] Fix | Delete
-contains -icontains -ccontains -notcontains -inotcontains -cnotcontains
[83] Fix | Delete
-replace -ireplace -creplace
[84] Fix | Delete
-band -bor -bxor
[85] Fix | Delete
-and -or -xor
[86] Fix | Delete
[87] Fix | Delete
# Punctuation
[88] Fix | Delete
() [] {} , : ` = ; .
[89] Fix | Delete
[90] Fix | Delete
# Keywords
[91] Fix | Delete
elseif begin function for foreach return else trap while do data dynamicparam
[92] Fix | Delete
until end break if throw param continue finally in switch exit filter from try
[93] Fix | Delete
process catch
[94] Fix | Delete
[95] Fix | Delete
# Built-in variables
[96] Fix | Delete
$$ $? $^ $_
[97] Fix | Delete
$args $ConfirmPreference $ConsoleFileName $DebugPreference $Error
[98] Fix | Delete
$ErrorActionPreference $ErrorView $ExecutionContext $false $FormatEnumerationLimit
[99] Fix | Delete
$HOME $Host $input $MaximumAliasCount $MaximumDriveCount $MaximumErrorCount
[100] Fix | Delete
$MaximumFunctionCount $MaximumHistoryCount $MaximumVariableCount $MyInvocation
[101] Fix | Delete
$NestedPromptLevel $null $OutputEncoding $PID $PROFILE $ProgressPreference
[102] Fix | Delete
$PSBoundParameters $PSCommandPath $PSCulture $PSDefaultParameterValues
[103] Fix | Delete
$PSEmailServer $PSHOME $PSScriptRoot $PSSessionApplicationName
[104] Fix | Delete
$PSSessionConfigurationName $PSSessionOption $PSUICulture $PSVersionTable $PWD
[105] Fix | Delete
$ShellId $StackTrace $true $VerbosePreference $WarningPreference $WhatIfPreference
[106] Fix | Delete
$true $false $null
[107] Fix | Delete
[108] Fix | Delete
# Built-in functions
[109] Fix | Delete
A:
[110] Fix | Delete
Add-Computer Add-Content Add-History Add-Member Add-PSSnapin Add-Type
[111] Fix | Delete
B:
[112] Fix | Delete
C:
[113] Fix | Delete
Checkpoint-Computer Clear-Content Clear-EventLog Clear-History Clear-Host Clear-Item
[114] Fix | Delete
Clear-ItemProperty Clear-Variable Compare-Object Complete-Transaction Connect-PSSession
[115] Fix | Delete
ConvertFrom-Csv ConvertFrom-Json ConvertFrom-SecureString ConvertFrom-StringData
[116] Fix | Delete
Convert-Path ConvertTo-Csv ConvertTo-Html ConvertTo-Json ConvertTo-SecureString
[117] Fix | Delete
ConvertTo-Xml Copy-Item Copy-ItemProperty
[118] Fix | Delete
D:
[119] Fix | Delete
Debug-Process Disable-ComputerRestore Disable-PSBreakpoint Disable-PSRemoting
[120] Fix | Delete
Disable-PSSessionConfiguration Disconnect-PSSession
[121] Fix | Delete
E:
[122] Fix | Delete
Enable-ComputerRestore Enable-PSBreakpoint Enable-PSRemoting Enable-PSSessionConfiguration
[123] Fix | Delete
Enter-PSSession Exit-PSSession Export-Alias Export-Clixml Export-Console Export-Counter
[124] Fix | Delete
Export-Csv Export-FormatData Export-ModuleMember Export-PSSession
[125] Fix | Delete
F:
[126] Fix | Delete
ForEach-Object Format-Custom Format-List Format-Table Format-Wide
[127] Fix | Delete
G:
[128] Fix | Delete
Get-Acl Get-Alias Get-AuthenticodeSignature Get-ChildItem Get-Command Get-ComputerRestorePoint
[129] Fix | Delete
Get-Content Get-ControlPanelItem Get-Counter Get-Credential Get-Culture Get-Date
[130] Fix | Delete
Get-Event Get-EventLog Get-EventSubscriber Get-ExecutionPolicy Get-FormatData Get-Help
[131] Fix | Delete
Get-History Get-Host Get-HotFix Get-Item Get-ItemProperty Get-Job Get-Location Get-Member
[132] Fix | Delete
Get-Module Get-PfxCertificate Get-Process Get-PSBreakpoint Get-PSCallStack Get-PSDrive
[133] Fix | Delete
Get-PSProvider Get-PSSession Get-PSSessionConfiguration Get-PSSnapin Get-Random Get-Service
[134] Fix | Delete
Get-TraceSource Get-Transaction Get-TypeData Get-UICulture Get-Unique Get-Variable Get-Verb
[135] Fix | Delete
Get-WinEvent Get-WmiObject Group-Object
[136] Fix | Delete
H:
[137] Fix | Delete
help
[138] Fix | Delete
I:
[139] Fix | Delete
Import-Alias Import-Clixml Import-Counter Import-Csv Import-LocalizedData Import-Module
[140] Fix | Delete
Import-PSSession ImportSystemModules Invoke-Command Invoke-Expression Invoke-History
[141] Fix | Delete
Invoke-Item Invoke-RestMethod Invoke-WebRequest Invoke-WmiMethod
[142] Fix | Delete
J:
[143] Fix | Delete
Join-Path
[144] Fix | Delete
K:
[145] Fix | Delete
L:
[146] Fix | Delete
Limit-EventLog
[147] Fix | Delete
M:
[148] Fix | Delete
Measure-Command Measure-Object mkdir more Move-Item Move-ItemProperty
[149] Fix | Delete
N:
[150] Fix | Delete
New-Alias New-Event New-EventLog New-Item New-ItemProperty New-Module New-ModuleManifest
[151] Fix | Delete
New-Object New-PSDrive New-PSSession New-PSSessionConfigurationFile New-PSSessionOption
[152] Fix | Delete
New-PSTransportOption New-Service New-TimeSpan New-Variable New-WebServiceProxy
[153] Fix | Delete
New-WinEvent
[154] Fix | Delete
O:
[155] Fix | Delete
oss Out-Default Out-File Out-GridView Out-Host Out-Null Out-Printer Out-String
[156] Fix | Delete
P:
[157] Fix | Delete
Pause Pop-Location prompt Push-Location
[158] Fix | Delete
Q:
[159] Fix | Delete
R:
[160] Fix | Delete
Read-Host Receive-Job Receive-PSSession Register-EngineEvent Register-ObjectEvent
[161] Fix | Delete
Register-PSSessionConfiguration Register-WmiEvent Remove-Computer Remove-Event
[162] Fix | Delete
Remove-EventLog Remove-Item Remove-ItemProperty Remove-Job Remove-Module
[163] Fix | Delete
Remove-PSBreakpoint Remove-PSDrive Remove-PSSession Remove-PSSnapin Remove-TypeData
[164] Fix | Delete
Remove-Variable Remove-WmiObject Rename-Computer Rename-Item Rename-ItemProperty
[165] Fix | Delete
Reset-ComputerMachinePassword Resolve-Path Restart-Computer Restart-Service
[166] Fix | Delete
Restore-Computer Resume-Job Resume-Service
[167] Fix | Delete
S:
[168] Fix | Delete
Save-Help Select-Object Select-String Select-Xml Send-MailMessage Set-Acl Set-Alias
[169] Fix | Delete
Set-AuthenticodeSignature Set-Content Set-Date Set-ExecutionPolicy Set-Item
[170] Fix | Delete
Set-ItemProperty Set-Location Set-PSBreakpoint Set-PSDebug
[171] Fix | Delete
Set-PSSessionConfiguration Set-Service Set-StrictMode Set-TraceSource Set-Variable
[172] Fix | Delete
Set-WmiInstance Show-Command Show-ControlPanelItem Show-EventLog Sort-Object
[173] Fix | Delete
Split-Path Start-Job Start-Process Start-Service Start-Sleep Start-Transaction
[174] Fix | Delete
Start-Transcript Stop-Computer Stop-Job Stop-Process Stop-Service Stop-Transcript
[175] Fix | Delete
Suspend-Job Suspend-Service
[176] Fix | Delete
T:
[177] Fix | Delete
TabExpansion2 Tee-Object Test-ComputerSecureChannel Test-Connection
[178] Fix | Delete
Test-ModuleManifest Test-Path Test-PSSessionConfigurationFile Trace-Command
[179] Fix | Delete
U:
[180] Fix | Delete
Unblock-File Undo-Transaction Unregister-Event Unregister-PSSessionConfiguration
[181] Fix | Delete
Update-FormatData Update-Help Update-List Update-TypeData Use-Transaction
[182] Fix | Delete
V:
[183] Fix | Delete
W:
[184] Fix | Delete
Wait-Event Wait-Job Wait-Process Where-Object Write-Debug Write-Error Write-EventLog
[185] Fix | Delete
Write-Host Write-Output Write-Progress Write-Verbose Write-Warning
[186] Fix | Delete
X:
[187] Fix | Delete
Y:
[188] Fix | Delete
Z:</textarea></div>
[189] Fix | Delete
<script>
[190] Fix | Delete
var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
[191] Fix | Delete
mode: "powershell",
[192] Fix | Delete
lineNumbers: true,
[193] Fix | Delete
indentUnit: 4,
[194] Fix | Delete
tabMode: "shift",
[195] Fix | Delete
matchBrackets: true
[196] Fix | Delete
});
[197] Fix | Delete
</script>
[198] Fix | Delete
[199] Fix | Delete
<p><strong>MIME types defined:</strong> <code>application/x-powershell</code>.</p>
[200] Fix | Delete
</article>
[201] Fix | Delete
</body>
[202] Fix | Delete
</html>
[203] Fix | Delete
[204] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function