Windows - how to run program with input from file on command line

cmd.exe /c ".\main.exe < .\text.txt"

созданный 3y | 1 нояб. 2020 г., 20:57:35


Войдите, чтобы добавить комментарий

Другие сообщения в этой группе

Download youtube video and extract audio into mp3
./yt-dlp_linux $URL -x --audio-format mp3
4 мар. 2023 г., 19:01:10 | Quick commands
Quick convert from hex to dec

echo $((16#FF))

16 - numerical system FF - number in specified numerical system

19 нояб. 2022 г., 13:38:47 | Quick commands
Last 10 files based on last changes

find -ctime -2 -name "*.php" -not -path "./vendor/*" -not -path "./var/*" -not -path "./migrations/*" -printf "%T@ %Tc %p\n" | head -10

19 нояб. 2022 г., 13:31:26 | Quick commands
Faster way to delete large number of files on linux

rsync -a --delete empty/ x

20 авг. 2020 г., 14:30:21 | Quick commands
Start chrome with insecure (self signed) certificates

chrome.exe --ignore-certificate-errors --unsafely-treat-insecure-origin-as-secure=https://www.devdomain.com/

17 авг. 2020 г., 08:24:33 | Quick commands
Sort folders by their sizes

du -sBM * | sort -n

20 июл. 2020 г., 18:23:43 | Quick commands
scp /home/upload_directory/* user@yourhost.com:/va

scp /home/upload_directory/* user@yourhost.com:/var/www/yourhost.com/upload_directory

21 июн. 2020 г., 07:22:52 | Quick commands