■ import 키워드에서 as 키워드를 사용해 별칭을 만드는 방법을 보여준다. ▶ 예제 코드 (DART)
|
import 'dart:collection'; import 'dart:math' as math; void main() { math.Random rand = math.Random(); HashSet<int> hashSet = HashSet(); while (hashSet.length < 6) { hashSet.add(rand.nextInt(45)); } print(hashSet); } |
■ 별칭 리스트를 구하는 방법을 보여준다. ▶ 실행 명령
|
Get-ChildItem | Where-Object -Property Definition -eq Value New-PSDrive # 현재 경로가 Alias:인 경우 Get-ChildItem -Path Alias: | Where-Object -Property Definition -eq Value New-PSDrive |
■ Remove-Item 명령에서 -Path 스위치를 사용해 별칭을 제거하는 방법을 보여준다. ▶ 실행 명령
|
Remove-Item -Path .\npd # 현재 경로가 Alias:인 경우 Remove-Item -Path Alias:\npd |
■ Set-Location 명령에서 -Path 스위치를 사용해 현재 경로를 별칭 저장소로 변경하는 방법을 보여준다. ▶ 실행 명령
|
Set-Location -Path Alias: |
■ Export-Alias 명령에서 -Path 스위치를 사용해 현재 세션의 별칭 리스트를 CSV 파일로 내보내는 방법을 보여준다. ▶ 실행 명령
|
Export-Alias -Path d:\alias.csv |
■ Import-Alias 명령에서 -Path/-Force 스위치를 사용해 CSV 파일에서 별칭 리스트를 가져오는 방법을 보여준다. ▶ 실행 명령
|
Import-Alias -Path d:\alias.csv -Force |
■ Set-Alias 명령에서 -Name/-Value 스위치를 사용해 별칭을 변경하는 방법을 보여준다. ▶ 실행 명령
|
Set-Alias -Name wo -Value dir |
■ Get-Alias 명령에서 -Name 스위치를 사용해 별칭에 대한 리스트를 구하는 방법을 보여준다. ▶ 실행 명령
|
Get-Alias -Name ls [결과] CommandType Name Version Source ----------- ---- ------- ------ Alias ls -> Get-ChildItem |
■ New-Alias 명령에서 -Name/-Value 스위치를 사용해 별칭을 참조하는 방법을 보여준다. ▶ 실행 명령
|
New-Alias -Name wo -Value Write-Output |
■ Get-Alias 명령을 사용해 별칭 리스트를 구하는 방법을 보여준다. ▶ 실행 명령
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
Get-Alias [결과] CommandType Name Version Source ----------- ---- ------- ------ Alias % -> ForEach-Object Alias ? -> Where-Object Alias ac -> Add-Content Alias asnp -> Add-PSSnapin Alias cat -> Get-Content Alias cd -> Set-Location Alias CFS -> ConvertFrom-String 3.1.0.0 Microsoft.PowerShell.Utility Alias chdir -> Set-Location Alias clc -> Clear-Content Alias clear -> Clear-Host Alias clhy -> Clear-History Alias cli -> Clear-Item ... |
■ Get-Alias 명령에서 -Definition 스위치를 사용해 별칭 리스트를 구하는 방법을 보여준다. ▶ 실행 명령
|
Get-Alias -Definition Get-ChildItem [결과] CommandType Name Version Source ----------- ---- ------- ------ Alias dir -> Get-ChildItem Alias gci -> Get-ChildItem Alias ls -> Get-ChildItem |