Create an account

Very important

  • To access the important data of the forums, you must be active in each forum and especially in the leaks and database leaks section, send data and after sending the data and activity, data and important content will be opened and visible for you.
  • You will only see chat messages from people who are at or below your level.
  • More than 500,000 database leaks and millions of account leaks are waiting for you, so access and view with more activity.
  • Many important data are inactive and inaccessible for you, so open them with activity. (This will be done automatically)


Thread Rating:
  • 477 Vote(s) - 3.52 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Create an empty file on the commandline in windows (like the linux touch command)

#21
An easy way to replace the touch command on a windows command line like cmd would be:

type nul > your_file.txt

This will create 0 bytes in the `your_file.txt` file.

This would also be a good solution to use in windows batch files.

Another way of doing it is by using the [echo][1] command:

echo.> your_file.txt

echo. - will create a file with one empty line in it.


---

If you need to preserve the content of the file use `>>` instead of `>`

> Creates a new file
>> Preserves content of the file

Example

type nul >> your_file.txt


---

You can also use [call][2] command.

> Calls one batch program from another without stopping the parent batch program. The call command accepts labels as the target of the call.

Example:

call >> your_file.txt

[1]:

[To see links please register here]

[2]:

[To see links please register here]

---
or even if you don't want make it hard you can Just install [Windows Subsystem for Linux][1] (WSL). Then, type.

wsl touch

or

wsl touch textfilenametoedit.txt

Quotes are not needed.


[1]:

[To see links please register here]

Reply



Forum Jump:


Users browsing this thread:
1 Guest(s)

©0Day  2016 - 2023 | All Rights Reserved.  Made with    for the community. Connected through