create 10000 files with size 4k by using bash? [closed] - bash

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to do this.
Create 10000 files, (filename can be just combination of time and random number).
File size should be 4k.
And I want to time this. say how many seconds it will take.
How can I do this on bash?
Thank you.

time for x in {1..10000}; do
dd if=/dev/zero ibs=4k count=1 of=$x.txt 2>/dev/null
done

Related

Encrypted Text - Where to Start [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
So I have an encrypted text I need to decrypt, where do I start and is there a program that automatically recognizes an algorithm ? Here is a snippet of what I need decrypted:
e302446c4b62c02dc77b3c896ef385c64244a83bd6702b215882d3f1b599ff69
Encrypted text is designed to resemble random numbers. Cryptographic algorithms are designed specifically to keep you from doing exactly what you are trying to do.

7z questions and such [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am wanting to learn the ropes with 7z. This isn't working...I followed 7z --help:
7z x -r beans.7z personal.php
I want to make a .7z file called "beans.7z" and what contains the file "personal.php"
The error I get is:
Error:
there is no such archive
Here is the correct command for what you want to do:
7z a beans.7z personal.php

Octave : strange error when using ones [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I don't know why I have this strange error when using Octave on Windows 7 64 bit :
when I use ones(100:100) to declare a matrix 100x100. No problem. But when I use : ones(10:100) I will have error :
memory exhausted or requested size too large
And if I use ones(10:15) I must wait for long time (about 30 seconds) to have answer.
Please explain for me this error.
Thanks :)
Your syntax is wrong. To create an m x n matrix it should be:
ones(m,n)
e.g.
ones(100,100)
or
ones(10,15)

Handwriting Recognition for Windows Phone 7 [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'm planning to do a handwriting recognition application for WP7 in next graduating report. The only time its left more than a month not enought to study from the beginning. I plan to use SVM, but also don't know much about it. If some one has done this, please guide me. Thank you so much !

How to display the current time? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
How do I display the current time? Please give me an example.
I know about msdn but still have a problem.
Please use by trying DateTime.Now to access the current time.

Resources