Skip to content

Latest commit

 

History

History
56 lines (40 loc) · 1.05 KB

batch_all.md

File metadata and controls

56 lines (40 loc) · 1.05 KB

Installation

  • Machine: Windows 10 + Ubuntu via WSL.
  • Editor - ST3
  • Compiler, Debugger - Command prompt

Commands

  • > ls -a: shows all the files, folders horizontally

.  ..  .git  README.md  crud  hello
  • > ls -al: shows all the files, folders vertically

total 9
drwxr-xr-x 1 abhijit 197121   0 Feb 19 12:36 .
drwxr-xr-x 1 abhijit 197121   0 Feb 19 12:36 ..
drwxr-xr-x 1 abhijit 197121   0 Feb 19 12:36 .git
-rw-r--r-- 1 abhijit 197121 574 Feb 19 12:36 README.md
drwxr-xr-x 1 abhijit 197121   0 Feb 19 12:36 crud
drwxr-xr-x 1 abhijit 197121   0 Feb 19 12:36 hello
  • > ls -al README.md: shows all the info. of a file

-rw-r--r-- 1 abhijit 197121 574 Feb 19 12:36 README.md
  • > pwd: shows the directory

/f/Coding/Github_repos/eosio-playground
  • type nul > file.txt

    create a new file named - "file.txt"

Coding

  • > @echo off

    Output:

    C:\Users\abhijit>@echo off
  • > echo abhijit

    Output:

    abhijit