michaelsanford
Translator, Web Developer
I've got an alias that backs up my web design folder (scripts and stuff) to my little USB stick. This is the line from .cshrc
alias vault 'cp -r /Library/WebServer/Documents/design /Volumes/VAULT/ &'
When I run it from the command line I get the answer
[gwailo:~]% vault
[1] 937
I know that ampersand releases the process from the console, but what's the business with the two numbers? Is there a way to suppress them?
It looks about right that the second number is a PID, and the first number is uuh
This command runs in the background so that I don't have to wait until it's finished copying to do other stuff.
alias vault 'cp -r /Library/WebServer/Documents/design /Volumes/VAULT/ &'
When I run it from the command line I get the answer
[gwailo:~]% vault
[1] 937
I know that ampersand releases the process from the console, but what's the business with the two numbers? Is there a way to suppress them?
It looks about right that the second number is a PID, and the first number is uuh
This command runs in the background so that I don't have to wait until it's finished copying to do other stuff.