GNU/Linux >> Linux の 問題 >  >> Linux

Windows PowerShell は Unix/Linux の「pwd」に相当しますか?

PowerShell には、Linux と同じコマンドが多数あります。 pwd 同等のコマンドです。

pwd と入力すると Powershell では、Get-Location のエイリアスです。 .


Get-Location に加えて とそのエイリアス、自動変数 $pwd も使用できます .

$pwd 変数は、PathInfo メンバーに直接アクセスできるため便利です。例

$pwd.Path.PadLeft(80)
$pwd.Drive

どのメンバーが存在するか知りたい場合は、command\alias を Get-Member にパイプするだけです。 :

PS C:\Users\your-name-here\Desktop> pwd|Get-Member


   TypeName: System.Management.Automation.PathInfo

Name         MemberType Definition
----         ---------- ----------
Equals       Method     bool Equals(System.Object obj)
GetHashCode  Method     int GetHashCode()
GetType      Method     type GetType()
ToString     Method     string ToString()
Drive        Property   System.Management.Automation.PSDriveInfo Drive {get;}
Path         Property   System.String Path {get;}
Provider     Property   System.Management.Automation.ProviderInfo Provider {get;}
ProviderPath Property   System.String ProviderPath {get;}

Get-Location コマンドレットでうまくいくはずです

Thiago が述べたように、次のエイリアスを使用できます:gl または pwd


Linux
  1. Linux / Unix でログインしているユーザーを確認して印刷する

  2. Linux cksum コマンドに相当する Windows

  3. Unix の文字列コマンドに相当する Windows はありますか?

  1. Windows の Linux の File コマンドに相当するものは何ですか?

  2. Windows レジストリに相当する Linux

  3. Windowsスタートアップに相当するLinuxは何ですか?

  1. Powershell から OS バージョン、Linux および Windows を判別する

  2. Windows での Linux の ~ (チルダ) に相当するものは何ですか?

  3. Windows での UNIX の find コマンドに相当するもの