এটি একটি দুর্দান্ত প্রশ্ন, এবং আমিও এর মতো কিছু খুঁজছিলাম, তবে আমি নিশ্চিত যে ইতিমধ্যে নটিলাসের মতো তৈরি কিছু নেই,
তবে আপনি যদি কিছু স্ক্রিপ্টিংয়ের দিকে হাত ঘুরিতে পারেন তবে আপনি তুলনামূলকভাবে নটিলাসকে file Notes
অনুরূপ কিছু করতে খুব সহজেই মানিয়ে নিতে পারেন । এটিতে কিছু বেসিক (+?) স্ক্রিপ্টিং প্রয়োজন ..
সঙ্গে file Notes
আপনি একটি নির্দেশিকা হিসেবে ফাইলগুলিতে নোট যোগ করতে পারেন ..
আপনার নির্দিষ্ট ট্যাগ (গুলি) এর জন্য নোটগুলি অনুসন্ধান করা এবং 'নোটস'-এর সাথে ম্যাচিং ট্যাগের সাহায্যে প্রতিটি ডিরেক্টরিতে অস্থায়ী লিঙ্কগুলি (বা স্থায়ী) তৈরি করা সহজ বিষয় হবে ... তারপরে এই লিঙ্কগুলিকে একটি' অনুসন্ধানে রাখুন ' ফলাফলের ডিরেক্টরি ... যা আপনি তখন কোনও নটিলাস উইন্ডোতে উপস্থাপন করবেন! ...
যদি আমার অতিরিক্ত সময় থাকে তবে আমি নিজেই এটি করতাম, তবে পরিবর্তে, নটিলাস নোটগুলি অ্যাক্সেস করতে এবং লিখতে এবং মুছতে আমি লিখেছিলাম এমন একটি স্ক্রিপ্ট এখানে .. যা আমি উপরে বর্ণিত তা করে না, তবে এটি কীভাবে অ্যাক্সেস করবেন তা দেখায় নোটের ডেটা ক্যাশে । স্ক্রিপ্টটি ব্যবহারের জন্য তৈরিnautilus-actions
স্ক্রিপ্টটি pastbin.ubuntu.com এ রয়েছে
আপডেট : আমি এখন একটি ওয়ার্কিং স্ক্রিপ্ট লিখেছি যা উপরে বর্ণিত হিসাবে লিঙ্কগুলি ব্যবহার করেছে .. তবে, আমি এখন "নটিলাস নোটস" ধারণাটি পরিবর্তন করেছি এবং পরিবর্তে ব্যবহারকারীর অজানা .tag ফাইলগুলিতে গ্রাফ্ট করেছি .. (সুতরাং, আপনি যদি স্ক্রিপ্টটি পছন্দ করেন মনে রাখবেন ।। ট্যাগ ধারণাটি 'ব্যবহারকারী অজানা'র) ..
আমি সরল পাঠ্য ফাইলগুলি পছন্দ করি (সেগুলি সহজ এবং বহুমুখী এবং এর সাথে কাজ করা খুব সহজ)
আমি locate
অনুসন্ধান সরঞ্জাম হিসাবে ব্যবহার করেছি , এটি অতি দ্রুত, তবে এটি কেবলমাত্র সর্বশেষ চলমান হিসাবে আপ টু ডেট updatedb
(যা সাধারণত দৈনিক, তবে আপনি এটি যে কোনও সময় চালাতে পারেন)।
আমি মন্তব্যগুলিতে স্ক্রিপ্টের ব্যবহারটি ব্যাখ্যা করার চেষ্টা করেছি, তবে আমার এটি উল্লেখ করা উচিত যে এটি সম্পূর্ণরূপে পরীক্ষিত নয়, সুতরাং এটি কিছু ছোটখাটো পয়েন্টগুলিতে দুর্ব্যবহার করতে পারে ..
এটি কেবলমাত্র টেম্প ডিরেক্টরিটি এবং কোনও নরম লিঙ্কগুলি মুছে / মুছে দেয় are এতে রয়েছে ... নোট করুন যে সফট-লিঙ্কগুলি অপসারণ করা লক্ষ্য / ডেটা ডিরেক্টরিগুলি সরিয়ে দেয় না।
এখানে স্ক্রিপ্ট
আপডেট 2 : (একটি বাগ স্থির করা হয়েছে .. এটি কেবলমাত্র প্রথম 100 টি অবস্থিত। ট্যাগ ফাইলটি প্রক্রিয়াকরণ করছে)
#!/bin/bash
# Script: dirtags ...(by fred.bear)
#
# Summary: Open the file browser in a temporary directory
# which contains soft-links to directories whose
# '.tag' file contains the search string in $1
#
# .tag files are files you create in any directory which
# you wish to *tag*.
#
# .tag files are simple free form text, so you can
# put anything you like in them...
#
# The script uses `locate` to create a list of .tag file
# 'locate' is very fast, but because it depends on 'updatedb'
# for its list of current files, it can be a bit out of sync
# with a newly added .tag file... Modifying an existing
# .tag file does not effect `locate`
# To refresh the `locate` database, just run 'sudo updatedb'
# .. (updatedb typically auto-runs once a day, but you should check)
#
# Note: The search result soft links are put into a temporary directory
# This directory is removed each time you run the script
# TODO: allow saved searches (?) maybe
#
# Note: With nautilus, running the script a second time while
# the previoulsy opened wiondow is still open, cause the
# second window to open in its parent directory: /tmp/$USER
# ... but you can then just enter the 'dirtags' dir
# you see listed /tmp/$USER/$bname
# TODO: this probably happens because currently the
# directory is being removed each time the script
# is run... (related to "allow saved searches")
#
# A sample usage of this script:
#
# 1. Make a '.tag' file in each of several test directories.
# 2, For this first-time test, run 'sudo updatedb' so that the
# newly added .tag files are added to the 'locate's database
# 3. In each .tag file, put some tags (words or phrases to serch for)
# eg; action comedy drama good bad sci-fi documentary
# 4. Run this script with a single argument.. (a grep regex)
# eg "action|comedy"
#
function args_grep_links {
# $1 -- the grep regex
##echo grep -l '"'$1'"' ${tagged[@]}
< <(eval grep -l '$1' ${tagged[@]}) \
sed "s/^\(.*\)\/\.tag/ln -s \"\1\" $tagdbs/" \
>>"$tagdir"/.tag.slinks
##(gedit "$tagdir"/.tag.slinks &)
# make the soft links
source "$tagdir"/.tag.slinks
rm "$tagdir"/.tag.slinks
unset tagged
aix=
}
# Identity the script
bname="$(basename "$0")"
# Syntax
if [[ "$1" == "" ]] ; then
echo "ERROR: $bname requires one arg; a 'grep' regular expression string"
echo " eg: $bname \"music\" ......... Any instance of \"music\" .....(eg: \"musical\")"
echo " eg: $bname \"\<music\>\" ..... Only the word \"music\" ...(but not \"musical\")"
echo " eg: $bname \"muscic\|action\". Any instance of \"music\" or \"action\")"
exit 1
fi
# 'locate' the .tag files
# =======================
tagdir="/tmp/$USER/$bname"
tagdbs="${tagdir//\//\/}"
[[ -d "$tagdir" ]] && rm -rf "$tagdir" # remove all
[[ ! -d "$tagdir" ]] && mkdir -p "$tagdir" # fresh start
cp /dev/null "$tagdir"/.tag.slinks
unset tagged # array of .tag files
aix=0 # arg index
amax=10 # arg max per call to grep
fct=0 # file count
while IFS= read -r file ; do
tagged[$aix]="$file"
####echo ${tagged[aix]}
((aix++));((fct++))
(( aix == amax )) && args_grep_links "$1"
done < <(locate -ber ^\.tag$ |sed "s/.*/\"&\"/")
(( aix < amax )) && args_grep_links "$1"
sleep 1 # to allow time for rm to settle down after rm and adding links
xdg-open "$tagdir"
exit
#