1161 links
  • linx
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
  • ► Play Videos
Links per page: 20 50 100
page 1 / 1
2 results tagged uniq x
  • thumbnail
    Remove Duplicates from JavaScript Array
    function uniq(a) {
        var seen = {};
        return a.filter(function(item) {
            return seen.hasOwnProperty(item) ? false : (seen[item] = true);
        });
    }
    February 23, 2017 at 11:06:01 AM UTC - permalink -
    QRCode
    - http://stackoverflow.com/a/9229821/954777
    array javascript javascript uniq
  • thumbnail
    shell - Remove duplicate lines using a Bash script - Stack Overflow

    You can sort then uniq:

    $ sort -u file.txt

    February 11, 2016 at 3:37:10 PM UTC - permalink -
    QRCode
    - https://stackoverflow.com/questions/9377040/remove-duplicate-entries-using-a-bash-script
    bash lines oneliner scripting uniq unix
Links per page: 20 50 100
page 1 / 1
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation