I'm trying to create a zip file from a folder and I'd like to exclude the .git sub-folder from the resulting zip file.
I have gone to the parent folder of the one I want to zip (called bitvolution) and I'm doing:
zip -r bitvolution.zip bitvolution -x ".git"
But it doesn't exclude the .git sub-folder.
I've tried various combinations, -x .git*,…
I'm setting up a backup for a friend's computer onto his USB drive. I was reading this article about the Windows 7 Backup and Restore feature.
Everything looks okay, but for the life of me, I can't figure out how to get to this screen:
I need to set up some excluded folders, since the backup media is a little smaller than the home folder. I…
I have an rsync command for copying my files from dev to production. I don't want to copy the .htaccess file that's in the root of the HTML directory but, I do want to copy the few .htaccess files that are in its sub directories.
I'm using the argument --exclude .htaccess which is stopping all of the files from getting copied. The other…
I have the following bash script that creates a tar.gz of my filesystem on a Kubuntu PC. The problem is, that it also tries to backup the tar.gz backup file, even though I am storing the backup in /tmp and omitting /tmp from the backup. I am wondering why it's backing up the file in /tmp even though I told it not to.
#!/bin/bash
# init
…
I have an ignore file for rsync but I can't figure out how to ignore this string of file names and the username:
backup/cpbackup/daily/username/homedir/mail/cur/1244452567.H511146P7355.dwhs45.dwhs.net,S=2161:2,
backup/cpbackup/daily/username/homedir/mail/cur/1244455430.H516330P14494.dwhs45.dwhs.net,S=4062:2,
I tried this:
…
In SQL how do I exclude a record if there are more than 2 characters after a dash..
Example I only want to return records that match the following
AA00000-0
but the table also has recoreds like AA0000-000,AA0000000-00
I need to return only records that have a single digit after the dash
I have multiple users adding content to restricted categories (using RoleScoper) in my Wordpress setup that don't show up on the homepage (custom template with query_posts()).
I'm looking for a way to "promote" the submitted content to the homepage by adding it to another category.
My loop code looks like this:
<?php…
I need to exclude protection on one of the folder inside a protected directory with .htaccess
I put .htaccess in here:
/home/mysite/public_html/new/administrator/.htaccess
The directory need to be exclude from protection:
/home/mysite/public_html/new/administrator/components/com_phocagallery/
My .htaccess file :
…
I need to do a recursive diff using cygwin that needs do exclude all .xml files from certain directories, but not from other directories. According to the --help option I should be able to do this with with the --exclude=PAT option where PAT is a pattern describing the files I want to exclude from the diff.
If I do…
I have the following script I wrote by searching Google, and it backs up my Linux system to an archive:
#!/bin/bash
# init
DATE=$(date +20%y%m%d)
tar -cvpzf /share/Recovery/Snapshots/$HOSTNAME_$DATE.tar.gz --exclude=/proc --exclude=/lost+found --exclude=/sys --exclude=/mnt --exclude=/media --exclude=/dev…
I would like to create custom backup sets for Mozy which exclude certain directories. For example, I would like to backup my Itunes folder, but exclude all podcasts. I have created a backup set which searches in /Users/me/Music and used this query
kMDItemPath == "*Podcasts*"wc
to exclude all matching…
We're currently building a new responsive website. While working on the site map, we figured that we don't want to show certain sections on mobile devices. This can be easily done by hiding the navigation parts using CSS/media queries.
However, the trouble is that the hidden sites would still show up…
Hey guys/gals!
I had a question for you, something that I can't seem to find the solution for... Basically, I have a model called Environment, and I am passing all of them to a view, and there are particular environments that I would like to exclude. Now, I know there is a exclude function on a…
This is the system call, i am making right now in perl to tar the files
system("${tarexe} -pcvf $tarname $includepath") which works fine.
$tarexe -> location of my tar.exe file
$tarname -> myMock.tar
$includepath -> ./input/myMockPacketName ./input/myPacket/my2/*.wav…
In Django you can use the exclude to create SQL similar to not equal. An example could be.
Model.objects.exclude(status='deleted')
Now this works great and exclude is very flexible. Since I'm a bit lazy, I would like to get that functionality when using get_object_or_404, but…
Hi,
I sometimes have the need to make sure some instances are excluded from a queryset.
This is the way I do it usually:
unwanted_instance = Mymodel.objects.get(pk=bad_luck_number)
uninteresting_stuff_happens()
my_results = MyModel.objects.exclude(id=unwanted_instance.id)
…
I have a simple script that uses rsync to copy a Postgres database to a backup location for use with Point In Time Recovery. The script is run every 2 hours via a cron job for the postgres user. For some strange reason, I can see three copies of rsync running in the process…
I'm trying to get a list of files from a directory excluding files in hidden folders. With the following command, hidden folders are traversed even though I've set /A:-H to exclude hidden directories. Is there a different switch to stop them from being traversed too?
dir…
Is it possible to exclude some processes from being reported by top?
For example, I would like to exclude itself from its listing (ie, I don't want top to show in the process list).
I would also like to be able to exclude processes that do not belong to the user running…
I'm looking for the string "foo=" (without quotes) in text files in a directory tree. It's on a common Linux machine, I have bash shell:
grep -ircl "foo=" *
In the directories are also many binary files which match "foo=". As these results are not relevant and slow…
Can I do filename pattern matching in a bash script?
"test" is a directory with the following files ...
bob@bob-laptop:~/test$ ls
exclude exclude1 exclude2 include1 include2
from the command line, if I want to exclude some of the files, I
can do ...
…
We have two Apache server as front-end and 4 tomcat server as back-end configured using mod_proxy module as load balancer. Now, we want to exclude an single tomcat url from the mod_proxy load balancer. Is there any way or rule to exclude?
Proxy Balancer Setting:
…
I'm doing a word search using the following command:
find . -exec grep -q [some_word] '{}' \; -print -o -name .svn -prune -o -name .ssh -prune -o -name .boneyard -o -name log -prune -prune -o -name tmp -prune
Is it possible to use a regex to exclude all hidden…