Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 106189
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T01:33:27+00:00 2026-05-11T01:33:27+00:00

The (command line) interface I have in mind is like so: watching FILE+ do

  • 0

The (command line) interface I have in mind is like so:

watching FILE+ do COMMAND [ARGS] (and COMMAND [ARGS])* 

Where any occurrence of ‘{}‘ in COMMAND is replaced with the name of the file that changed. And note that ‘do‘ and ‘and‘ are keywords.

For example:

> watching foo.txt bar.txt do scp {} somewhere.com:. and echo moved {} to somewhere 

Or:

> watching foo.c do gcc foo.c and ./a.out 

I’m not wedded to that interface though. I’ll add my script that does that as an answer and see if anyone has anything better or ways to improve it.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T01:33:27+00:00Added an answer on May 11, 2026 at 1:33 am
    #!/usr/bin/perl # Run some commands whenever any of a set of files changes (see USAGE below). # Example: # ./watching.pl foo.txt bar.txt do scp foo.txt remote.com:. and cat bar.txt # To only do something to the file that changed, refer to it as {}.  $| = 1;  # autoflush  my $p = position('do', @ARGV); # position of 1st occurrence of 'do' in @ARGV. if (@ARGV < 3 || $p == -1 || !($p >= 1 && $p < $#ARGV)) {   die 'USAGE: watching FILE+ do COMMAND [ARGS] (and COMMAND [ARGS])*\n'; }  my $cmdstr = join(' ', splice(@ARGV, $p+1));  # grab stuff after the 'do' my @cmds = split(/\s+and\s+/, $cmdstr); pop(@ARGV);  # remove the 'do' on the end. my @targets = @ARGV; print 'Watching {', join(' ', @targets), '} do (', join('; ', @cmds), '):\n';  # initialize the %last hash for last mod time of each file. for my $t (@targets) {   ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,    $atime,$mtime,$ctime,$blksize,$blocks) = stat($t);   $last{$t} = $mtime; }  my $i = 1; while(1) {   if($i % (45*60) == 0) { print '.'; }    for my $t (@targets) {     ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,      $atime,$mtime,$ctime,$blksize,$blocks) = stat($t);      if ($mtime != $last{$t}) {       print '\nCHANGE DETECTED TO $t\n';       for (@cmds) { my $tmp = $_; $tmp =~ s/\{\}/$t/g; system($tmp); }       $last{$t} = $mtime;     }   }   sleep(1);   $i++; }   # Call like so: position($element, @list). sub position {   my $x = shift;   if(@_==0) { return -1; }   if($x eq $_[0]) { return 0; }   shift;   my $p = position($x,@_);   if($p==-1) { return -1; }   return 1+$p; } 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 199k
  • Answers 199k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer JMeter has a random variable configuration element for HTTP Request… May 12, 2026 at 7:47 pm
  • Editorial Team
    Editorial Team added an answer I don't know if the LINQ-to-SQL engine can handle the… May 12, 2026 at 7:47 pm
  • Editorial Team
    Editorial Team added an answer If you look at the source code for that page,… May 12, 2026 at 7:47 pm

Related Questions

What are your opinions on developing for the command line first, then adding a
When in eclipse and you decide to share a project in a subversion repository
All of my C++ programs so far have been using the command line interface
I have run into two situations lately where I have chosen to use the

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.