python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Guidance on Powershell command or script to sort directories evenly based on amount of data
I am in the process of moving my file server from on-prem up to an Azure file share/VM.
I've got everything in place and ready to move, but I am wanting to divide my files up and do it in 4 roughly eq...

CB Midkiff
Votes: 0
Answers: 1
using atoi to convert command-line arguments to int, is only returning the first digit entered
I have to use command line arguments to set up a map for a snake game for my uni assignment. We were not specifically told to use atoi to help convert the command line argument from string to int, How...
yer
Votes: 0
Answers: 2
Use node.js commandline argument as environment variable
I call my node.js application with
node index.js a=5
I want to use the value '5' directly as an environment variable in my code like
const myNumber = process.env.a
(like stated here).
If I try the a...
CPI
Votes: 0
Answers: 3
How to pass a parameters on the command line?
I want to run a PHP program from a shell script, passing parameters each time and getting them with $_GET["DBF"].
For example:
$ php prog.php?DBF=clients
$ php prog.php?DBF=suppliers
How ca...
jack.linton
Votes: 0
Answers: 3