I have tried and searched all but i didn't get answer for my requirement.
Hi,
I was wondering if there is a command to delete a file in the future.
For example: If I create a file named unix.lst using the vi editor, but after I create it, what command will be suitable to delete "unix" files from the system at 13:40 military time with no log file.
I was going to use : find /root -name unix -exec rm {} \;
but I believe that it wont really work the way I wa
Is there any way to create a virtual file, such that reading from the file actually reads from the stdout of a command; writing to the file is acually writing to the stdin of a command?
So far I have kludged this with an inotifywait on a file, which calls a command when the file is modified, taking it's input from the file and writing back to it.
I don't like that the inotifywait has to be const
Can someone help me on creating a script that will manage/create a csv file from Pl/Sql using UNIX?Any advice is welcome,thank you so much,:)
I want a create a file with a specific extension(.done). I am using the command touch. Something Like:
touch basename $UNZIPFILE".done"
It's creating the file but in current directory. I want to create this file in a specific directory.
Is there a option to provide the directory ?
I checked : http://ss64.com/bash/touch.html , but could not figure out.
Hi,
Could anyone help me in providing command to generate .tgz file without creating .tar file?
currently i am using below command for doing the same but if tar file has big size and there is no space in drive then tgz file will not be generated.
Hi, I'm new here.I try to remastering the install from https://wiki.archlinux.org/index.php/Re … nstall_ISOYeah, customisations are fine, but Finally I missed Creating a new ISO section.Once you have edited your custom ISO to your needs, you must create a new ISO image.
I am new to shell scripting in Linux and I am trying to take data from the keyboard and then append the data passed in to a file. Pretty straight forward but I am getting an error when I try to create the file. The error says "you do not have permission to create this file".
I first do a check to make sure the file exists. If it exists, append to the end of the file. If not, create the file.
I am trying to create an aar file using this command
jar cvf FirstWebService.aar ./*
This creates the .aar but when I go to load the .aar file into tomcat's /webapps I get an .xml/services not found error. I am not unzipping or unpacking the aar like in this question: Axis2 web service error: services.xml not found
What's wrong with the process I am using to create the .aar file?