タグ付けされた質問 「prefix」

16
nvmはnpm configの「prefix」オプションと互換性がありません:
別のNodeJSバージョンを実行しようとしていますnvmが、このエラーが発生します。 $ nvm use v4.2.4 nvm is not compatible with the npm config "prefix" option: currently set to "/Users/z/.npm-global" Run `npm config delete prefix` or `nvm use --delete-prefix v4.2.4` to unset it. 回避するために意図的にプレフィックスを設定していますsudo npm(https://docs.npmjs.com/getting-started/fixing-npm-permissionsを参照)。 nvmグローバルにインストールされたパッケージのプレフィックスを失うことなく使用できる方法はありますか?
208 node.js  npm  prefix  nvm 

9
接頭辞/接尾辞で名前を変更するにはどうすればよいですか?
mv original.filename new.original.filename元のファイル名を再入力せずにどうすればよいですか? 私は何かのような、mv -p=new. original.filenameあるいはおそらくmv original.filename new.~何でもできると想像しますが、man mv/ info mvページを見た後、このようなものを見ることができません。 もちろん、これを行うシェルスクリプトを作成することもできますが、既存のコマンド/フラグはありませんか?
95 bash  rename  filenames  prefix  mv 

5
Python正規表現-rプレフィックス
rプレフィックスが使用されていないのに、以下の例1が機能する理由を誰かが説明できますか?rエスケープシーケンスを使用する場合は常にプレフィックスを使用する必要があると思いました。例2と例3は、これを示しています。 # example 1 import re print (re.sub('\s+', ' ', 'hello there there')) # prints 'hello there there' - not expected as r prefix is not used # example 2 import re print (re.sub(r'(\b\w+)(\s+\1\b)+', r'\1', 'hello there there')) # prints 'hello there' - as expected as r prefix is used …

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.