creating new files


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers creating new files
# 1  
Old 04-12-2008
creating new files

Hello ,

What is the easiest way to get into a directory in solaris and simply create a new file that you can then fill with content?

Thanks
# 2  
Old 04-13-2008
Quote:
Originally Posted by montana77
Hello ,

What is the easiest way to get into a directory in solaris and simply create a new file that you can then fill with content?

Thanks
touch <file>
> <file>
echo <string> > <file>
# 3  
Old 04-13-2008
Quote:
Originally Posted by montana77
Hello ,

What is the easiest way to get into a directory in solaris and simply create a new file that you can then fill with content?

Thanks
same way as you would create a file in Solaris.

give the file path ( complete path )
# 4  
Old 04-13-2008
at the prompt:

1) cd /<full_path_name>
*cd stands for change directory

2) declare an editor (like VI or Pico) and then the name of the file you want to create - for instance: vi test_file.txt
*you will need to learn some additional commands for the editor you chose to use
# 5  
Old 04-13-2008
Quote:
Originally Posted by clueless181
1) cd /<full_path_name>
*cd stands for change directory

2) declare an editor (like VI or Pico) and then the name of the file you want to create - for instance: vi test_file.txt
*you will need to learn some additional commands for the editor you chose to use
Actually there is no requirement to cd to the directory in order to create a file there. Simply edit path/to/directory/newfile (or touch, or cat, or redirect to that file).

The question is slightly weird, as if creating a file would require something special. Provided you have write access to the directory in question, there are few things which are more trivial.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Not looping or creating files

So my script is supposed to repeat for every server in my file, but as of now it is getting stuck on my awk commands # Read file cred.txt (with one IP per line), connect to servers (one at a time), and download directory listing i=1 param=$(sed -n "{$1}p" $parm_dir/cdm_param.txt) #Get the last... (6 Replies)
Discussion started by: MJCreations
6 Replies

2. Shell Programming and Scripting

Creating zip files

Hi All, I have a requirement where I have to pick csv files from another unix server by searching the list of files by their name and then copy to my server. Then I want to create their zip file and save it on my server. How can I do it using unix shell script. Please help me with the... (1 Reply)
Discussion started by: anil029
1 Replies

3. Shell Programming and Scripting

Creating two files out of one file

Hi members, I have a file with lots of text like this: asdsfkm dfsfomnow i want to extract only the rows with HUMAN as its 1st column for this I used : ruby -ne 'print if /^Human/; exit if /^TER/' $line | awk 'print $1, "\t"$2, "\t"$3, "\t"$4, "\t"$5}' >$line"new" This is creating a file... (1 Reply)
Discussion started by: CAch
1 Replies

4. UNIX for Dummies Questions & Answers

Creating files with New User

Hello All, I just created a new user on a server running SLES 11, and I created the user using the command below: # useradd -G nagios scpuser But whenever I create a file or directory while logged in as this user it creates the file's ownership permissions as "scpuser:users" instead of it... (2 Replies)
Discussion started by: mrm5102
2 Replies

5. Shell Programming and Scripting

Need help creating a script to FTP files to a server and then delete the files that were transfered.

I am trying to FTP files to a Windows server through my Linux machine. I have setup the file transfer with no problems but am having problem deleting those files from the Linux box. My current non-working solution is below. Any ideas, anyone?? :wall: Please be gentle, I'm fairly new to this... (4 Replies)
Discussion started by: jmalfhs
4 Replies

6. Shell Programming and Scripting

Creating a matrix from files.

I need to create a large matrix so that I can feed that matrix to MATLAB for processing. The problem is creating that matrix because my data is completely scattered around files. 1. I have one big dictionary file which has words in newlines, like apple orange pineapple 2. I have some... (3 Replies)
Discussion started by: shoaibjameel123
3 Replies

7. UNIX for Dummies Questions & Answers

Creating files

I know cat can be used to create new files but how to create multiple files(above 10) simultaneously .... can we use pipes? (6 Replies)
Discussion started by: senyor17
6 Replies

8. Shell Programming and Scripting

Creating CSV files

hi, Need a lil help experts. i have a sh file and its calling one SQL file. i need the dataset returned by that SQL file in a CSV format. Can you plz help me out at the earliest. waiting eagerly .. :confused: Thanks.. (10 Replies)
Discussion started by: onlyniladri
10 Replies

9. Homework & Coursework Questions

Creating empty files

Use and complete the template provided. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: Write a single command to create a new empty file in P1 called cloud9, I have to do it from my current working directory which is P3 cd ../ away P1... (1 Reply)
Discussion started by: dat350z
1 Replies

10. UNIX for Dummies Questions & Answers

Creating CSV Files

I have a requiremnt to create one CSV file with initial 5 lines as blank rows. From 5th row onwards the file is to be created from a list of varibales which gets evaluated. Say A,B,C,D,E are 5 varibales with some value associated with each of them and data type is string. So the 6th row should... (1 Reply)
Discussion started by: dr46014
1 Replies
Login or Register to Ask a Question