Jump to content

Cheatsheet/TACL: Difference between revisions

From wikiNonStop
Content deleted Content added
No edit summary
No edit summary
Line 65: Line 65:
|}
|}


{| class="wikitable"
|+ Basic Tools
|-
! Command
! [[File:Gnu-bash-logo.svg|40px]]
! [[File:Windows icon.svg|20px]] cmd
! [[file:Windows icon.svg|20px]] PowerShell
! Description
|-
| '''{{kbd|SYSINFO}}''' || {{code|inline=y|cat /etc/*-release}} || {{code|inline=y|systeminfo}} || {{code|inline=y|systeminfo}}
| Lists operating system version and some hardware details
|-
| '''{{kbd|EDIT}}''' || {{n/a}} || {{n/a}} || {{n/a}}
| Text Editor (linemode)
|-
| '''{{kbd|FUP}}''' || {{n/a}} || {{n/a}} || {{n/a}}
| File Utility Program
|-
| '''{{kbd|PATHCOM}}''' || {{n/a}} || {{n/a}} || {{n/a}}
| Pathway Command Interface
|-
| '''{{kbd|PERUSE}}''' || {{n/a}} || {{n/a}} || {{n/a}}
| Spooler Interface
|-
| '''{{kbd|SPOOLCOM}}''' || {{n/a}} || {{n/a}} || {{n/a}}
| Spooler Interface
|-
| '''{{kbd|SQLCI}}''' || {{n/a}} || {{n/a}} || {{n/a}}
| SQL Command Interface
|-
| '''{{kbd|TEDIT}}''' || {{code|inline=y|nano}} || {{n/a}} || {{n/a}}
| Text Editor (blockmode)
|-
| Example || Example || Example || Example || Example
|}


<references/>
<references/>

Revision as of 20:49, 1 May 2026

Tacl Cheatsheet

TACL Basic Commands
Command cmd PowerShell Description
! +↵ Enter +↵ Enter +↵ Enter Reexecute previous command
? Display previous command
FC N/A N/A N/A Display previous command for modifying
HISTORY history doskey /h history Display list of previously issued command lines
ENV env env env Display environment
EOF! CTRL+y env env Stop execution of command or tool
EXIT exit CTRL+c CTRL+c Stop execution of command or tool
FILES ls dir /B ls -Name List files in current directory
FILEINFO ls -lisa dir ls List details for files in current directory
HELP man help help Help
LOGON logon logon logon Logon
PASSWORD passwd passwd passwd Set or change password
PMSEARCH echo "$PATH" set path $env:path Display paths to be searched for executables or macros
SETPROMPT ALL PS1='\h(\u)\W>' prompt $p$g N/A Set promptline's prefix
STATUS ps tasklist Get-Process Display status of running processes
STOP kill taskkill Stop-Process Stop running process
VOLUME cd cd cd Changes your current volume and/or subvolume
WHO whoami whoami whoami Display info for user
Basic Tools
Command cmd PowerShell Description
SYSINFO cat /etc/*-release systeminfo systeminfo Lists operating system version and some hardware details
EDIT N/A N/A N/A Text Editor (linemode)
FUP N/A N/A N/A File Utility Program
PATHCOM N/A N/A N/A Pathway Command Interface
PERUSE N/A N/A N/A Spooler Interface
SPOOLCOM N/A N/A N/A Spooler Interface
SQLCI N/A N/A N/A SQL Command Interface
TEDIT nano N/A N/A Text Editor (blockmode)
Example Example Example Example Example