![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX Desktop for Dummies Questions & Answers Questions regarding GNOME, KDE, CDE, Open Office, etc go here. All UNIX and Linux Newbies Welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to make sound using C under UNIX | trapeze | UNIX for Dummies Questions & Answers | 6 | 12-10-2007 11:14 PM |
| Unix Make | mmipko | High Level Programming | 3 | 11-23-2007 03:18 PM |
| Make a copy of a unix HDD | josramon | UNIX for Dummies Questions & Answers | 0 | 03-20-2007 08:57 AM |
| make file | mxms755 | UNIX for Dummies Questions & Answers | 1 | 05-09-2006 06:38 AM |
| How can I make ls -l in HP-UNIX? | sangjinn | High Level Programming | 1 | 09-24-2001 02:39 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
Make file in Unix
How to make files in Unix
|
| Forum Sponsor | ||
|
|
|
#2
|
||||
|
||||
|
See the man page for make - there are probably subtle differences for each OS, so reading your man page would be better than for me to show a link to one that may not be right for you.
|
|
#3
|
|||
|
|||
|
I think he is talking about making a file not using make files. If you want to create a file, use touch.
|
|
#4
|
||||
|
||||
|
if it would be solaris there is a command called mkfile to create files with a specific filesize
|
|
#5
|
||||
|
||||
|
yes in unix there is a way to make a file of a certain size too...
In HPUX, it is called "prealloc"... sometimes used for place holders or even used to overwrite a disk or a tape. There is a make command but I dont think you want that one.
__________________
My brain is your brain |
|
#6
|
|||
|
|||
|
vi <filename>
|
|
#7
|
||||
|
||||
|
and many more ... and some more not mentioned ...
Code:
> file >> file echo "boo" | tee file echo "boo" | tee -a file cp file1 file ln file1 file cat file1 > file cat file1 file2 >> file command_with_output > file command_with_output >> file command_with_output_pipe_command_with_output > file command_with_output_pipe_command_with_output >> file |
||||
| Google The UNIX and Linux Forums |