https://github.com/songquanpeng/command-faker
An executable file generator that used to fake other programs.
https://github.com/songquanpeng/command-faker
Last synced: 5 months ago
JSON representation
An executable file generator that used to fake other programs.
- Host: GitHub
- URL: https://github.com/songquanpeng/command-faker
- Owner: songquanpeng
- License: mit
- Created: 2022-10-02T08:11:30.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-10-02T11:46:39.000Z (about 3 years ago)
- Last Synced: 2025-02-27T02:42:45.348Z (8 months ago)
- Language: C
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Command Faker
> An executable file generator that used to fake other programs.## Basic Usages
```shell
# Specify a output name:
ls | ./faker tmp && ./tmp
# If you don't, it will output to stdout.
ls | ./faker > tmp && chmod u+x ./tmp && ./tmp
```