Hide

What's this?

commandlinefu.com is the place to record those command-line gems that you return to again and again.

Delete that bloated snippets file you've been using and share your personal repository with the world. That way others can gain from your CLI wisdom and you from theirs too. All commands can be commented on, discussed and voted up or down.


If you have a new feature suggestion or find a bug, please get in touch via http://commandlinefu.uservoice.com/

Get involved!

You can sign-in using OpenID credentials, or register a traditional username and password.

First-time OpenID users will be automatically assigned a username which can be changed after signing in.

Hide

Stay in the loop…

Follow the Tweets.

Every new command is wrapped in a tweet and posted to Twitter. Following the stream is a great way of staying abreast of the latest commands. For the more discerning, there are Twitter accounts for commands that get a minimum of 3 and 10 votes - that way only the great commands get tweeted.

» http://twitter.com/commandlinefu
» http://twitter.com/commandlinefu3
» http://twitter.com/commandlinefu10

Subscribe to the feeds.

Use your favourite RSS aggregator to stay in touch with the latest commands. There are feeds mirroring the 3 Twitter streams as well as for virtually every other subset (users, tags, functions,…):

Subscribe to the feed for:

Hide

News

2012-05-20 - test
test
2012-05-20 - test
test
2012-05-20 - test
test
2012-05-20 - Test tweets
YU not working?
Hide

Tags

Hide

Functions

shell function which allows you to tag files by creating symbolic links directories in a 'tags' folder.

Terminal - shell function which allows you to tag files by creating symbolic links directories in a 'tags' folder.
tag() { local t="$HOME/tags/$1"; [ -d $t ] || mkdir -p $t; shift; ln $* $t;}
2012-02-08 12:40:45
User: bartonski
Functions: ln mkdir
2
shell function which allows you to tag files by creating symbolic links directories in a 'tags' folder.

The tag function takes a tag name as its first argument, then a list of files which take that tag. The directory $HOME/tags/tagname will then hold symbolic links to each of the tagged files. This function was inspired by tmsu (found at https://bitbucket.org/oniony/tmsu/wiki/Home).

Example:

tag dog airedale.txt .shizturc weimeraner.pl

This will create $HOME/tags/dog which contains symbolic links to airedale.txt .shizturc and weimeraner.pl

Alternatives

There are 2 alternatives - vote for the best!

Terminal - Alternatives
tag() { local t="$HOME/tags/$1"; [ -d $t ] || mkdir -p $t; shift; local i; for i in $*; do ln -s $(readlink -f $i) $t;done}
2012-02-10 15:43:02
Functions: ln mkdir readlink
0

shell function which allows you to tag files by creating symbolic links directories in a 'tags' folder.

The tag function takes a tag name as its first argument, then a list of files which take that tag. The directory $HOME/tags/tagname will then hold symbolic links to each of the tagged files. This function was modified from bartonski's (http://www.commandlinefu.com/commands/view/10216) inspired by tmsu (found at https://bitbucket.org/oniony/tmsu/wiki/Home) with readlink function by flxndn (http://www.commandlinefu.com/commands/view/10222).

Example:

tag dog airedale.txt .shizturc weimeraner.pl

This will create $HOME/tags/dog which contains symbolic links to airedale.txt .shizturc and weimeraner.pl

Know a better way?

If you can do better, submit your command here.

What others think

But it only works with arguments with absolue paths, if you use relativa paths the links will only works in the same directory where the tags were created.

Comment by flxndn 15 weeks and 1 day ago

Egad, that's frustrating... hard to fix in a one-liner.

Comment by bartonski 15 weeks ago

changed call to ln so that it creates hard links rather than symbolic... not being able to use relative paths is more of a hindrance (for me) than not being able to tag files across file systems.

Comment by bartonski 15 weeks ago

flxdn: I assume your full path function was to fix the issue? I'm holding off on posting the alternative using readlink.

Comment by MeanderingCode 15 weeks ago

Your point of view

You must be signed in to comment.

Related sites and podcasts